Add some depends

This commit is contained in:
Raoul Snyman 2022-05-03 14:18:58 -07:00
parent 9b794af8fa
commit 7d3b00753d
Signed by: raoul
GPG Key ID: F55BCED79626AE9C
1 changed files with 10 additions and 0 deletions

View File

@ -26,6 +26,8 @@ pipeline:
# artifacts: # artifacts:
# paths: # paths:
# - linux.coverage # - linux.coverage
depends_on:
- lint-python
test-ubuntu: test-ubuntu:
group: test group: test
@ -34,6 +36,8 @@ pipeline:
commands: commands:
- sh scripts/generate_resources.sh - sh scripts/generate_resources.sh
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 --color=no --disable-warnings - xvfb-run -s '-screen 0 1024x768x24' pytest-3 --color=no --disable-warnings
depends_on:
- lint-python
test-fedora: test-fedora:
group: test group: test
@ -42,6 +46,8 @@ pipeline:
commands: commands:
- sh scripts/generate_resources.sh - sh scripts/generate_resources.sh
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 --color=no --disable-warnings - xvfb-run -s '-screen 0 1024x768x24' pytest-3 --color=no --disable-warnings
depends_on:
- lint-python
test-arch: test-arch:
group: test group: test
@ -50,6 +56,8 @@ pipeline:
commands: commands:
- sh scripts/generate_resources.sh - sh scripts/generate_resources.sh
- xvfb-run -s '-screen 0 1024x768x24' pytest --color=no --disable-warnings - xvfb-run -s '-screen 0 1024x768x24' pytest --color=no --disable-warnings
depends_on:
- lint-python
# test-macos: # test-macos:
# group: test # group: test
@ -74,6 +82,8 @@ pipeline:
commands: commands:
- yarn install - yarn install
- yarn test --browsers ChromiumHeadlessCI - yarn test --browsers ChromiumHeadlessCI
depends_on:
- lint-javascript
upload-pypi: upload-pypi:
group: deploy group: deploy