We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5760245 commit 120aeb9Copy full SHA for 120aeb9
.travis.yml
@@ -9,11 +9,15 @@ jobs:
9
10
install:
11
- echo "Install"
12
+ - sudo apt-get update
13
+ - sudo apt install mongodb
14
15
+ - source ~/virtualenv/python3.8/bin/activate
16
- pip install -U scikit-learn
17
- export PYTHONPATH="${PYTHONPATH}:./src/jarvis"
18
19
script:
- - python -m unittest discover -s ./src -p "*tests.py"
20
+ - sudo bash run_tests.sh
21
22
#notifications:
23
# email: false
run_tests.sh
@@ -3,7 +3,7 @@
3
# Activate Python virtual env
4
# --------------------------------
5
export PYTHONPATH="${PYTHONPATH}:./src/jarvis"
6
-source jarvis_virtualenv/bin/activate
+#source jarvis_virtualenv/bin/activate
7
8
# Start MongoDB service
0 commit comments