diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2019-08-12 16:30:07 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2019-08-12 16:30:07 +0200 |
commit | b28b3608a85c4c7d0a6b5bbed0d4615fd7f8c427 (patch) | |
tree | 86b8d5197109c3f264d09d69784a231af83c62df /.gitlab-ci.yml | |
parent | 431b58c41670fd92a829f91296ce722a5e754ab2 (diff) |
gitlab-ci: Add missing dependency
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 |