test, test, test!

master
Laura Liberda 2020-12-03 07:40:55 +01:00
parent dadab6e8f5
commit 68c67fdc12
1 changed files with 81 additions and 0 deletions

View File

@ -9,12 +9,48 @@ py2.7-unit_tests:
- nosetests tests/*.py
- python setup.py sdist bdist_wheel
py3.4-unit_tests:
image: python:3.4-alpine
script:
- nosetests tests/*.py
- python setup.py sdist bdist_wheel
py3.5-unit_tests:
image: python:3.5-alpine
script:
- nosetests tests/*.py
- python setup.py sdist bdist_wheel
py3.6-unit_tests:
image: python:3.6-alpine
script:
- nosetests tests/*.py
- python setup.py sdist bdist_wheel
py3.7-unit_tests:
image: python:3.7-alpine
script:
- nosetests tests/*.py
- python setup.py sdist bdist_wheel
py3.8-unit_tests:
image: python:3.8-alpine
script:
- nosetests tests/*.py
- python setup.py sdist bdist_wheel
py3.9-unit_tests:
image: python:3.9-alpine
script:
- nosetests tests/*.py
- python setup.py sdist bdist_wheel
py3.10-rc-unit_tests:
image: python:3.10-rc-alpine
script:
- nosetests tests/*.py
- python setup.py sdist bdist_wheel
jy2.7-unit_tests:
image: openjdk:11-slim
before_script:
@ -38,6 +74,42 @@ py2.7-integration_test:
script:
- python -m librefi
py3.4-integration_test:
image: python:3.4-buster
before_script:
- pip install -r requirements.txt
- apt-get -y update
- apt-get -y install network-manager
script:
- python3 -m librefi
py3.5-integration_test:
image: python:3.5-buster
before_script:
- pip install -r requirements.txt
- apt-get -y update
- apt-get -y install network-manager
script:
- python3 -m librefi
py3.6-integration_test:
image: python:3.6-buster
before_script:
- pip install -r requirements.txt
- apt-get -y update
- apt-get -y install network-manager
script:
- python3 -m librefi
py3.7-integration_test:
image: python:3.7-buster
before_script:
- pip install -r requirements.txt
- apt-get -y update
- apt-get -y install network-manager
script:
- python3 -m librefi
py3.8-integration_test:
image: python:3.8-buster
before_script:
@ -56,6 +128,15 @@ py3.9-integration_test:
script:
- python3 -m librefi
py3.10-rc-integration_test:
image: python:3.10-rc-buster
before_script:
- pip install -r requirements.txt
- apt-get -y update
- apt-get -y install network-manager
script:
- python3 -m librefi
jy2.7-integration_tests:
image: openjdk:11-slim
before_script: