summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authoradityacp2021-02-16 16:13:24 +0530
committeradityacp2021-02-16 16:13:24 +0530
commit0697dc314471a2bde90d52b1726914c85a360470 (patch)
treedc8b56154af6981894a798c6f7c209cc90b39191 /.travis.yml
parent1a2d31e1c59427c28211030ea09cd4964b4bd8d8 (diff)
downloadonline_test-0697dc314471a2bde90d52b1726914c85a360470.tar.gz
online_test-0697dc314471a2bde90d52b1726914c85a360470.tar.bz2
online_test-0697dc314471a2bde90d52b1726914c85a360470.zip
Change travis and tests
- Add celery run and stop worker command in travis - Fix failing tests
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 0fad559..27b6dfe 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,11 +29,14 @@ before_script:
# command to run tests and coverage
script:
- coverage erase
+ - celery multi start 1 -A online_test worker -B
- coverage run -p manage.py test -v 2 yaksh
- coverage run -p manage.py test -v 2 stats
- coverage run -p manage.py test -v 2 grades
- coverage run -p manage.py test -v 2 yaksh.live_server_tests.load_test
- coverage run -p manage.py test -v 2 api
+ - celery multi stop 1
+ - find . -type f -name "*.pid" -exec rm -f {} \;
after_success:
- coverage combine