Spaces:
Build error
Build error
Nikhil0987
commited on
Commit
•
54a605f
1
Parent(s):
ecbb4b2
Create .travis.yml
Browse files- .travis.yml +16 -0
.travis.yml
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
language: python
|
2 |
+
python:
|
3 |
+
- "3.6"
|
4 |
+
# command to install dependencies
|
5 |
+
before_script:
|
6 |
+
- sudo apt-get update
|
7 |
+
- sudo apt-get install python3
|
8 |
+
- sudo apt-get install python3-pip
|
9 |
+
- sudo pip3 install --upgrade pip
|
10 |
+
- sudo apt-get install python-enchant
|
11 |
+
- sudo apt-get update
|
12 |
+
- sudo pip3 install -r requirements.txt
|
13 |
+
|
14 |
+
# command to run tests
|
15 |
+
script:
|
16 |
+
- travis_wait 30 python3 Run.py
|