eb38e1ce96
doesn't run on development branches anyhow, and for some reason produces errors on python 3.8
24 lines
502 B
YAML
24 lines
502 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8"
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get install -y task libdbus-1-dev
|
|
install:
|
|
- pip install i3ipc
|
|
- pip install psutil
|
|
- pip install netifaces
|
|
- pip install -U coverage==4.3
|
|
- pip install codeclimate-test-reporter
|
|
- pip install taskw
|
|
- pip install pytz
|
|
- pip install tzlocal
|
|
- pip install dbus-python
|
|
- pip install coverage
|
|
script:
|
|
- coverage run -m unittest discover -v
|