diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-19 11:47:00 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-19 11:47:00 +0000 |
commit | 3aafecf3fed3b5b5675526682dcedec31dc03ff9 (patch) | |
tree | 4b524b2f6ca2d11bc95d605673943eec58c77c15 /.buildkite | |
parent | Remove non-dedicated logging options and command line arguments (#5678) (diff) | |
parent | Speed up the PostgreSQL unit tests (#5717) (diff) | |
download | synapse-3aafecf3fed3b5b5675526682dcedec31dc03ff9.tar.xz |
Speed up the PostgreSQL unit tests (#5717)
Diffstat (limited to '.buildkite')
-rw-r--r-- | .buildkite/pipeline.yml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index c5100be190..592832d754 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -116,8 +116,10 @@ steps: limit: 2 - label: ":python: 3.5 / :postgres: 9.5" + agents: + queue: "medium" env: - TRIAL_FLAGS: "-j 4" + TRIAL_FLAGS: "-j 8" command: - "bash -c 'python -m pip install tox && python -m tox -e py35-postgres,codecov'" plugins: @@ -133,8 +135,10 @@ steps: limit: 2 - label: ":python: 3.7 / :postgres: 9.5" + agents: + queue: "medium" env: - TRIAL_FLAGS: "-j 4" + TRIAL_FLAGS: "-j 8" command: - "bash -c 'python -m pip install tox && python -m tox -e py37-postgres,codecov'" plugins: @@ -150,8 +154,10 @@ steps: limit: 2 - label: ":python: 3.7 / :postgres: 11" + agents: + queue: "medium" env: - TRIAL_FLAGS: "-j 4" + TRIAL_FLAGS: "-j 8" command: - "bash -c 'python -m pip install tox && python -m tox -e py37-postgres,codecov'" plugins: |