Skip to content

Commit

Permalink
travis huey
Browse files Browse the repository at this point in the history
  • Loading branch information
nitely committed Sep 12, 2020
1 parent 06829b1 commit 5972a31
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .travis.yml
Expand Up @@ -54,3 +54,20 @@ jobs:
- python runtests.py
env: []
after_success: []
- name: "Huey"
language: python
python: "3.8"
install:
- pip install --upgrade pip
- pip install .
- pip install .[huey]
- pip uninstall django-spirit -y
- pip install -q Django==3.0.3
script:
- python ./spirit/extra/bin/spirit.py startproject project
- export PYTHONWARNINGS="default"
- export ST_UPLOAD_FILE_ENABLED=0
- export ST_TASK_MANAGER=huey
- python runtests.py
env: []
after_success: []
Expand Up @@ -60,7 +60,7 @@
ST_RATELIMIT_CACHE = 'st_rate_limit'
ST_UPLOAD_FILE_ENABLED = bool(int(os.getenv('ST_UPLOAD_FILE_ENABLED', True)))
ST_ORDERED_CATEGORIES = True
ST_TASK_MANAGER = None
ST_TASK_MANAGER = os.getenv('ST_TASK_MANAGER', None)
HUEY = {
'name': 'test',
'immediate': True
Expand Down

0 comments on commit 5972a31

Please sign in to comment.