haruhi-dl/.gitlab-ci.yml

84 lines
1.4 KiB
YAML
Raw Normal View History

2020-10-31 21:42:52 +01:00
default:
before_script:
- apk add bash
- pip install nose
py2.7-core:
image: python:2.7
variables:
HDL_TEST_SET: core
2020-10-31 21:42:52 +01:00
before_script:
- pip install nose
script:
- ./devscripts/run_tests.sh
py2.7-download:
image: python:2.7
variables:
HDL_TEST_SET: download
2020-10-31 21:42:52 +01:00
allow_failure: true
before_script:
- pip install nose
script:
- ./devscripts/run_tests.sh
py3.6-core:
image: python:3.6-alpine
variables:
HDL_TEST_SET: core
2020-10-31 21:42:52 +01:00
script:
- ./devscripts/run_tests.sh
py3.6-download:
image: python:3.6-alpine
variables:
HDL_TEST_SET: download
2020-10-31 21:42:52 +01:00
allow_failure: true
script:
- ./devscripts/run_tests.sh
py3.7-core:
image: python:3.7-alpine
variables:
HDL_TEST_SET: core
2020-10-31 21:42:52 +01:00
script:
- ./devscripts/run_tests.sh
py3.7-download:
image: python:3.7-alpine
variables:
HDL_TEST_SET: download
2020-10-31 21:42:52 +01:00
allow_failure: true
script:
- ./devscripts/run_tests.sh
py3.8-core:
image: python:3.8-alpine
variables:
HDL_TEST_SET: core
2020-10-31 21:42:52 +01:00
script:
- ./devscripts/run_tests.sh
py3.8-download:
2020-10-31 23:31:40 +01:00
image: python:3.8-alpine
2020-10-31 21:42:52 +01:00
variables:
HDL_TEST_SET: download
2020-10-31 21:42:52 +01:00
allow_failure: true
script:
- ./devscripts/run_tests.sh
py3.9-core:
image: python:3.9-alpine
variables:
HDL_TEST_SET: core
2020-10-31 21:42:52 +01:00
script:
- ./devscripts/run_tests.sh
py3.9-download:
image: python:3.9-alpine
variables:
HDL_TEST_SET: download
2020-10-31 21:42:52 +01:00
allow_failure: true
script:
- ./devscripts/run_tests.sh