1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00

updated travis config

This commit is contained in:
checktheroads 2019-06-16 17:15:59 -07:00
parent 7e222496f8
commit d7d06b20ee
2 changed files with 11 additions and 3 deletions

View file

@ -2,8 +2,7 @@ language: python
python:
- "3.6"
before_install:
- sudo apt-get update -q
- sudo apt-get install -y redis
- bash ./ci/ci_dependencies.sh
- pip3 install black
- pip3 install pylint
install:
@ -13,4 +12,4 @@ before_script:
script:
- python3 ./ci/ci_test.py
after_script:
- bash ./ci/ci_commit.sh
- bash ./ci/ci_commit.shs

9
ci/ci_dependencies.sh Normal file
View file

@ -0,0 +1,9 @@
#!/bin/bash
install_dependencies() {
sudo add-apt-repository universe
sudo apt-get update -q
sudo apt-get install -y redis
}
install_dependencies()