language: python sudo: required dist: trusty python: - "3.4" - "3.5" - "3.6" - "3.6-dev" - "3.7-dev" - "nightly" # command to install dependencies # before_install: "sudo apt-get update; sudo apt-get install -y python3-nose python3-flask python3-stem python3-pyqt5" install: - pip install Flask==0.12 stem==1.5.4 pytest-cov coveralls # command to run tests script: pytest test/ --cov test/ after_success: - coveralls