You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monero-python/.travis.yml

25 lines
487 B

language: python
sudo: false
python:
- "2.7"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
matrix:
allow_failures:
python: "nightly"
cache: pip
before_install:
- rm -rf dist && python setup.py sdist # prep package distribution
install:
- pip install dist/*.tar.gz # install dependencies as specified in setup.py
- pip install -r test_requirements_py`echo $TRAVIS_PYTHON_VERSION | cut -f 1 -d .`.txt
script:
- black --check .
- pytest
after_success:
- coveralls