From ec3cf1cd144e55573cd94257da7f86775254273a Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 20 Jun 2020 12:31:16 -0500 Subject: [PATCH] Creates test output directory --- .circleci/config.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7faac87..12e3c37 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,13 +16,15 @@ jobs: - run: pip install --user -r dj_rest_auth/tests/requirements.pip - run: pip install -q --user coveralls djangorestframework==$DRF Django==$DJANGO_VERSION - run: - command: coverage run --source=dj_rest_auth setup.py test + command: | + mkdir -p test-results/ + coverage run --source=dj_rest_auth setup.py test name: Test - run: command: COVERALLS_REPO_TOKEN=Q58WdUuZOi89XHyDeDsGE2lxUGQ2IfqP3 coveralls name: Coverage - store_test_results: - path: ~/test-results/ + path: test-results/ test-django-2: <<: *template environment: