mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
16 lines
325 B
YAML
16 lines
325 B
YAML
language: python
|
|
python:
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.5-dev" # 3.5 development branch
|
|
- "3.6"
|
|
- "3.6-dev" # 3.6 development branch
|
|
- "3.7-dev" # 3.7 development branch
|
|
# command to install dependencies
|
|
install:
|
|
- pip3 install -r requirements.txt
|
|
# command to run tests
|
|
script:
|
|
- sudo python HiddenEye.py
|