Simple app to add configuration options to a Django project.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

travis

+10 -3
+10 -3
.travis.yml
··· 2 2 python: 3 3 - "3.7" 4 4 - "3.8" 5 + cache: 6 + directories: 7 + - $PIP_CACHE_DIR 8 + env: 9 + global: 10 + - PIP_CACHE_DIR=$HOME/.cache/pip 5 11 install: 6 12 - pip install coveralls 7 - - pip install pipenv 8 - - pipenv install 13 + - pip install poetry 14 + - poetry config virtualenvs.create false && poetry install -n --no-ansi 9 15 script: 10 - - pytest --cov options 16 + - black --check . 17 + - pytest --cov options 11 18 after_success: 12 19 - coveralls 13 20