blob: ad2929098beeaaac89e4ff6ca4bf7b2228233e2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
image: debian:buster-slim
stages:
- test
test:
stage: test
script:
- apt-get update -qy
- apt-get install -y python3-dev python3-numpy python3-scipy python3-pytest python3-sklearn python3-yaml
- PYTHONPATH=lib pytest-3
|