mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
15 lines
291 B
YAML
15 lines
291 B
YAML
|
language: python
|
||
|
python:
|
||
|
- "3.6"
|
||
|
before_install:
|
||
|
- sudo apt-get update -q
|
||
|
- sudo apt-get install -y redis
|
||
|
- pip3 install black
|
||
|
install:
|
||
|
- pip3 install -r requirements.txt
|
||
|
- pip3 install gunicorn
|
||
|
- pip3 install pylint
|
||
|
before_script:
|
||
|
- black hyperglass/
|
||
|
- pylint hyperglass/
|