Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Add sytest to buildkite #4854

Closed
wants to merge 30 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@ env:
CODECOV_TOKEN: "2dd7eb9b-0eda-45fe-a47c-9b5ac040045f"

steps:
- label: "Sytest postgres 3"
artifact_paths:
- /tmp/*.log*
- /tmp/**/*.log*
- /tmp/sytest/results.xml
- /tmp/results.tap
plugins:
- docker#v3.0.1:
image: "matrixdotorg/sytest-synapsepy3:latest"
environment:
- "POSTGRES=1"
- "WORKERS=1"
workdir: "/src"
volumes:
- /tmp:/logs
shell: false
command: ["--all"]

- wait: ~
continue_on_failure: true

- label: ":writing_hand: Creating test summary"
plugins:
- bugcrowd/test-summary#v1.9.0:
inputs:
- label: Sytests
artifact_path: "*.tap"
type: tap
formatter:
type: details
context: test-summary

- command:
- "python -m pip install tox"
- "tox -e pep8"
Expand Down Expand Up @@ -166,3 +198,4 @@ steps:
run: testenv
config:
- .buildkite/docker-compose.py37.pg11.yaml

1 change: 1 addition & 0 deletions changelog.d/4854.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add sytest to buildkite pipeline.