Compare commits

..

1 Commits

Author SHA1 Message Date
Raoul Snyman d81761c8a7
Add config for Woodpecker CI
ci/woodpecker/push/lint Pipeline was successful Details
ci/woodpecker/push/test Pipeline was successful Details
ci/woodpecker/push/deploy Pipeline was successful Details
2022-05-03 15:07:25 -07:00
2 changed files with 1 additions and 5 deletions

View File

@ -1,6 +1,5 @@
pipeline:
test-debian:
group: test
image: openlp/debian
pull: true
commands:
@ -12,7 +11,6 @@ pipeline:
# - linux.coverage
test-ubuntu:
group: test
image: openlp/ubuntu
pull: true
commands:
@ -20,7 +18,6 @@ pipeline:
- xvfb-run -s '-screen 0 1024x768x24' pytest-3 --color=no --disable-warnings
test-fedora:
group: test
image: openlp/fedora
pull: true
commands:
@ -28,7 +25,6 @@ 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
IS_CI = 'GITLAB_CI' in os.environ or 'APPVEYOR' in os.environ or 'CI' in os.environ
@skipIf(IS_CI, 'Skip Bible HTTP tests to prevent GitLab CI from being blacklisted')