Spaces:
Runtime error
Runtime error
File size: 305 Bytes
e6c6ec5 b31816e 7ff1fe0 08fe3ff 1c22158 850f0f4 1c22158 ba14999 b31816e ba14999 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# Official Python language image.
test_py38:
image: python:3.8
before_script:
- python -v
- pip install -r requirements.txt
script:
- pytest --verbose
test_py39:
image: python:3.9
before_script:
- python -v
- pip install -r requirements.txt
script:
- pytest --verbose
|