diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-21 11:38:13 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-21 11:38:13 +0000 |
commit | 35a521bd6f4841162ca98706812be1eedbba85bd (patch) | |
tree | f577fcbd75aafc90d91d1b8ba803a3ef0023b9b4 /.buildkite/pipeline.yml | |
parent | Fix a cache-invalidation bug for worker-based deployments (#5920) (diff) | |
parent | Implement a structured logging output system. (#5680) (diff) | |
download | synapse-35a521bd6f4841162ca98706812be1eedbba85bd.tar.xz |
Implement a structured logging output system. (#5680)
Diffstat (limited to '.buildkite/pipeline.yml')
-rw-r--r-- | .buildkite/pipeline.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 118d648862..1e53a9348d 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -45,6 +45,14 @@ steps: - docker#v3.0.1: image: "python:3.6" + - command: + - "python -m pip install tox" + - "tox -e mypy" + label: ":mypy: mypy" + plugins: + - docker#v3.0.1: + image: "python:3.5" + - wait - command: @@ -54,6 +62,7 @@ steps: label: ":python: 3.5 / SQLite / Old Deps" env: TRIAL_FLAGS: "-j 2" + LANG: "C.UTF-8" plugins: - docker#v3.0.1: image: "ubuntu:xenial" # We use xenail to get an old sqlite and python |