mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2024-12-02 13:53:43 +03:00
Adds xml outputs
This commit is contained in:
parent
034a8bcc41
commit
095b1cacda
|
@ -21,7 +21,8 @@ jobs:
|
||||||
- run:
|
- run:
|
||||||
command: COVERALLS_REPO_TOKEN=Q58WdUuZOi89XHyDeDsGE2lxUGQ2IfqP3 coveralls
|
command: COVERALLS_REPO_TOKEN=Q58WdUuZOi89XHyDeDsGE2lxUGQ2IfqP3 coveralls
|
||||||
name: Coverage
|
name: Coverage
|
||||||
- store_test_results
|
- store_test_results:
|
||||||
|
path: ~/test-results/
|
||||||
test-django-2:
|
test-django-2:
|
||||||
<<: *template
|
<<: *template
|
||||||
environment:
|
environment:
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -46,6 +46,7 @@ coverage.xml
|
||||||
*.cover
|
*.cover
|
||||||
.hypothesis/
|
.hypothesis/
|
||||||
.pytest_cache/
|
.pytest_cache/
|
||||||
|
test-results/
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
*.mo
|
*.mo
|
||||||
|
|
|
@ -72,6 +72,9 @@ REST_FRAMEWORK = {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
|
||||||
|
TEST_OUTPUT_DIR = 'test-results'
|
||||||
|
|
||||||
INSTALLED_APPS = [
|
INSTALLED_APPS = [
|
||||||
'django.contrib.messages',
|
'django.contrib.messages',
|
||||||
'django.contrib.admin',
|
'django.contrib.admin',
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -34,6 +34,7 @@ setup(
|
||||||
'with_social': ['django-allauth>=0.25.0'],
|
'with_social': ['django-allauth>=0.25.0'],
|
||||||
},
|
},
|
||||||
tests_require=[
|
tests_require=[
|
||||||
|
'unittest-xml-reporting>=3.0.2',
|
||||||
'responses>=0.5.0',
|
'responses>=0.5.0',
|
||||||
'django-allauth>=0.25.0',
|
'django-allauth>=0.25.0',
|
||||||
'djangorestframework-simplejwt>=4.4.0 ',
|
'djangorestframework-simplejwt>=4.4.0 ',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user