Spaces:
Build error
Build error
File size: 386 Bytes
54a605f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
language: python
python:
- "3.6"
# command to install dependencies
before_script:
- sudo apt-get update
- sudo apt-get install python3
- sudo apt-get install python3-pip
- sudo pip3 install --upgrade pip
- sudo apt-get install python-enchant
- sudo apt-get update
- sudo pip3 install -r requirements.txt
# command to run tests
script:
- travis_wait 30 python3 Run.py
|