1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
Matt Love 93a2ec9a5b Add uninstall dev requirements
Pylint check failing in CI but not locally
2019-07-08 00:34:18 -07:00

23 lines
620 B
YAML

---
language: python
python:
- '3.6'
before_install:
- sudo add-apt-repository universe -y
- sudo apt-get update -q
- sudo apt-get install -y redis-server redis-tools
- sudo systemctl start redis-server
install:
- pip3 install -r requirements.txt
before_script:
- pip3 uninstall -r ./tests/requirements_dev.txt
- pip3 install -r ./tests/requirements_dev.txt
- black --check hyperglass
- python3 ./manage.py pylint-check --integer-only True
- python3 ./tests/ci_prepare.py
script:
- nohup python3 ./tests/ci_dev_server.py &
- sleep 20
- python3 ./tests/ci_test.py