.gitlab-ci.yml: make test command consistent across distros
This switches to use "python3 -m unittest discover -v" onevery distro.
This commit is contained in:
parent
db797e3a52
commit
8c7b23be90
@ -51,14 +51,14 @@ tests:archlinux:
|
|||||||
image: $CONTAINER_REGISTRY:archlinux
|
image: $CONTAINER_REGISTRY:archlinux
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- python3 setup.py test
|
- python3 -m unittest discover -v
|
||||||
|
|
||||||
tests:debian:
|
tests:debian:
|
||||||
image: $CONTAINER_REGISTRY:debian
|
image: $CONTAINER_REGISTRY:debian
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- apt-get -qqy purge bubblewrap
|
- apt-get -qqy purge bubblewrap
|
||||||
- python3 setup.py test
|
- python3 -m unittest discover -v
|
||||||
|
|
||||||
tests:debian_with_bubblewrap:
|
tests:debian_with_bubblewrap:
|
||||||
image: $CONTAINER_REGISTRY:debian
|
image: $CONTAINER_REGISTRY:debian
|
||||||
@ -72,7 +72,7 @@ tests:fedora:
|
|||||||
image: $CONTAINER_REGISTRY:fedora
|
image: $CONTAINER_REGISTRY:fedora
|
||||||
stage: test
|
stage: test
|
||||||
script:
|
script:
|
||||||
- python3 setup.py test
|
- python3 -m unittest discover -v
|
||||||
|
|
||||||
tests:gentoo:
|
tests:gentoo:
|
||||||
image: $CONTAINER_REGISTRY:gentoo
|
image: $CONTAINER_REGISTRY:gentoo
|
||||||
|
Loading…
Reference in New Issue
Block a user