kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
Fixed #19: now uses pytest as a testing framework
rodzic
e7c8cad613
commit
4f15d3d28d
|
@ -9,8 +9,7 @@ test_api:
|
|||
- cd api
|
||||
- pip install -r requirements/test.txt
|
||||
script:
|
||||
- export DJANGO_SETTINGS_MODULE=config.settings.test
|
||||
- python manage.py test
|
||||
- pytest
|
||||
|
||||
tags:
|
||||
- docker
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
[pytest]
|
||||
DJANGO_SETTINGS_MODULE=config.settings.test
|
||||
|
||||
# -- recommended but optional:
|
||||
python_files = tests.py test_*.py *_tests.py
|
|
@ -5,3 +5,7 @@
|
|||
flake8==2.5.0
|
||||
model-mommy==1.3.2
|
||||
tox==2.7.0
|
||||
pytest
|
||||
pytest-django
|
||||
pytest-sugar
|
||||
pytest-xdist
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
docker-compose -f $DIR/test.yml run test python manage.py test "$@"
|
||||
docker-compose -f $DIR/test.yml run test pytest "$@"
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
test:
|
||||
dockerfile: docker/Dockerfile.test
|
||||
build: .
|
||||
command: python manage.py test
|
||||
command: pytest
|
||||
volumes:
|
||||
- .:/app
|
||||
environment:
|
||||
- DJANGO_SETTINGS_MODULE=config.settings.test
|
||||
|
|
Ładowanie…
Reference in New Issue