15 lines
193 B
YAML
15 lines
193 B
YAML
language: python
|
|
python:
|
|
- "3.8"
|
|
- "3.9"
|
|
- "3.10"
|
|
- "3.11"
|
|
- "3.12"
|
|
install:
|
|
- pip install -e ".[dev]
|
|
script:
|
|
- pytest -v
|
|
- pytest --cov=dataforge
|
|
notifications:
|
|
email: false
|