mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
1eed4f6244
Add more recent Python versions including development branches and nightly build.
16 lines
330 B
YAML
16 lines
330 B
YAML
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: ""
|
|
# command to run tests
|
|
script: nosetests3
|