Spaces:
Build error
Build error
File size: 305 Bytes
b1a499f |
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
|