Compare commits

..

9 Commits

Author SHA1 Message Date
47c36fac8d
Make things run in parallel
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/test Pipeline failed
ci/woodpecker/push/deploy unknown status
2022-05-03 14:55:45 -07:00
de2b52943e
Apparently we need to clone
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/test Pipeline failed
ci/woodpecker/push/deploy unknown status
2022-05-03 14:41:11 -07:00
d73b38a8a9
Make things run in parallel
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/test Pipeline failed
2022-05-03 14:37:00 -07:00
d8e80c9356
Fix typo 2022-05-03 14:32:58 -07:00
2b40357cae
skip clone on subsequent steps
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/test Pipeline failed
ci/woodpecker/push/deploy unknown status
2022-05-03 14:32:03 -07:00
e53f7d42b8
Move to multi-pipeline approach
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/test Pipeline failed
ci/woodpecker/push/deploy unknown status
2022-05-03 14:24:28 -07:00
7d3b00753d
Add some depends 2022-05-03 14:18:58 -07:00
9b794af8fa
Force pull
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
2022-05-03 13:58:02 -07:00
cc6ddff9bc
Add config for Woodpecker CI 2022-05-03 13:54:31 -07:00
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,6 @@
pipeline:
test-debian:
group: test
image: openlp/debian
pull: true
commands:
@ -11,6 +12,7 @@ pipeline:
# - linux.coverage
test-ubuntu:
group: test
image: openlp/ubuntu
pull: true
commands:
@ -18,6 +20,7 @@ pipeline:
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 --color=no --disable-warnings
test-fedora:
group: test
image: openlp/fedora
pull: true
commands:
@ -25,6 +28,7 @@ pipeline:
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 --color=no --disable-warnings
test-arch:
group: test
image: openlp/arch
pull: true
commands:

View File

@ -29,7 +29,7 @@ from openlp.core.common.registry import Registry
from openlp.core.common.settings import Settings
from openlp.plugins.bibles.lib.importers.http import BGExtract, BSExtract, CWExtract
IS_CI = 'GITLAB_CI' in os.environ or 'APPVEYOR' in os.environ or 'CI' in os.environ
IS_CI = 'GITLAB_CI' in os.environ or 'APPVEYOR' in os.environ
@skipIf(IS_CI, 'Skip Bible HTTP tests to prevent GitLab CI from being blacklisted')