diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b79bf95..424817f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ -image: python:latest - +image: debian:buster-slim + stages: - test @@ -7,5 +7,5 @@ test: stage: test script: - apt-get update -qy - - apt-get install -y python3-dev python3-numpy python3-scipy python3-pytest + - apt-get install -y python3-dev python3-numpy python3-scipy python3-pytest python3-sklearn - PYTHONPATH=lib pytest-3 |