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