12 lines
179 B
YAML
12 lines
179 B
YAML
language: python
|
|
|
|
python:
|
|
- "3.8"
|
|
- "3.9"
|
|
|
|
# command to install dependencies
|
|
install:
|
|
- pip install -r requirements/development.txt
|
|
# command to run tests
|
|
script:
|
|
- pytest |