nicobot/.travis.yml
2021-01-20 22:32:01 +01:00

15 lines
349 B
YAML

language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8" # 3.8 development branch
- "3.8-dev" # 3.8 development branch
- "nightly" # nightly build
install:
# Generates nicobot/version.py
- python setup.py build
- pip install -r requirements-build.txt -r requirements-runtime.txt
script:
- python -m unittest discover -s tests