-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
41 lines (31 loc) · 943 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# travis
# -*- coding: utf-8 -*-
## Dependencies: argparse, mplayer
## Author: Gijs Timmers: https://github.com/GijsTimmers
## Licence: CC-BY-SA-4.0
## http://creativecommons.org/licenses/by-sa/4.0/
## This work is licensed under the Creative Commons
## Attribution-ShareAlike 4.0 International License. To view a copy of
## this license, visit http://creativecommons.org/licenses/by-sa/4.0/ or
## send a letter to Creative Commons, PO Box 1866, Mountain View,
## CA 94042, USA.
## Setting up the correct language
language: python
python:
- "3.6"
sudo: required
## Command to install system dependencies
#addons:
#apt:
#packages:
#- mpv
## Command to install pip dependencies
install:
#- pip install .
- pip3 install -r requirements.txt
#- python setup.py install
## Actual script
script: python ./test.py
## Please don't spam my inbox
notifications:
email: false