Skip to content

Commit f409d25

Browse files
committed
Use /tests/results/
1 parent 3bf25ff commit f409d25

File tree

9 files changed

+9
-8
lines changed

9 files changed

+9
-8
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ RUN for f in /requirements/*.txt; do pip install -r $f; done && \
3232
pip install flake8 flake8-isort sphinx pyenchant sphinxcontrib-spelling selenium unittest-xml-reporting
3333

3434
RUN mkdir /tests && chown -R test:test /tests
35+
RUN mkdir /tests/results && chown -R test:test /tests/results/
3536
USER test:test
3637
ENV PYTHONPATH "${PYTHONPATH}:/tests/django/"
3738
VOLUME /tests/django

settings/test_mariadb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@
4545
}
4646

4747
TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
48-
TEST_OUTPUT_DIR = '/tests/django/output/'
48+
TEST_OUTPUT_DIR = '/tests/results/'

settings/test_mysql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@
4545
}
4646

4747
TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
48-
TEST_OUTPUT_DIR = '/tests/django/output/'
48+
TEST_OUTPUT_DIR = '/tests/results/'

settings/test_mysql_gis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
GEOIP_PATH = '/geolite2/'
3232

3333
TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
34-
TEST_OUTPUT_DIR = '/tests/django/output/'
34+
TEST_OUTPUT_DIR = '/tests/results/'

settings/test_oracle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@
4747
}
4848

4949
TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
50-
TEST_OUTPUT_DIR = '/tests/django/output/'
50+
TEST_OUTPUT_DIR = '/tests/results/'

settings/test_postgres.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@
5353
}
5454

5555
TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
56-
TEST_OUTPUT_DIR = '/tests/django/output/'
56+
TEST_OUTPUT_DIR = '/tests/results/'

settings/test_postgres_gis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@
3939
GEOIP_PATH = '/geolite2/'
4040

4141
TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
42-
TEST_OUTPUT_DIR = '/tests/django/output/'
42+
TEST_OUTPUT_DIR = '/tests/results'

settings/test_sqlite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@
4646
}
4747

4848
TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
49-
TEST_OUTPUT_DIR = '/tests/django/output/'
49+
TEST_OUTPUT_DIR = '/tests/results'

settings/test_sqlite_gis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
GEOIP_PATH = '/geolite2/'
3232

3333
TEST_RUNNER = 'xmlrunner.extra.djangotestrunner.XMLTestRunner'
34-
TEST_OUTPUT_DIR = '/tests/django/output/'
34+
TEST_OUTPUT_DIR = '/tests/results/'

0 commit comments

Comments
 (0)