chore: rename test settings and shorten runserver instructions (#6131)

This commit is contained in:
Robert Sparks 2023-08-11 11:21:38 -05:00 committed by GitHub
parent 540c4895bf
commit 73137364cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 14 additions and 14 deletions

View file

@ -137,9 +137,9 @@ jobs:
echo "Running tests..."
if [[ "x${{ github.event.inputs.ignoreLowerCoverage }}" == "xtrue" ]]; then
echo "Lower coverage failures will be ignored."
./ietf/manage.py test --validate-html-harder --settings=settings_postgrestest --ignore-lower-coverage
./ietf/manage.py test --validate-html-harder --settings=settings_test --ignore-lower-coverage
else
./ietf/manage.py test --validate-html-harder --settings=settings_postgrestest
./ietf/manage.py test --validate-html-harder --settings=settings_test
fi
coverage xml

View file

@ -45,7 +45,7 @@ jobs:
exit 1
fi
echo "Running tests..."
./ietf/manage.py test --validate-html-harder --settings=settings_postgrestest
./ietf/manage.py test --validate-html-harder --settings=settings_test
coverage xml
- name: Upload Coverage Results to Codecov

4
.vscode/tasks.json vendored
View file

@ -48,7 +48,7 @@
"args": [
"${workspaceFolder}/ietf/manage.py",
"test",
"--settings=settings_postgrestest"
"--settings=settings_test"
],
"group": "test",
"presentation": {
@ -68,7 +68,7 @@
"args": [
"${workspaceFolder}/ietf/manage.py",
"test",
"--settings=settings_postgrestest",
"--settings=settings_test",
"--pattern=tests_js.py"
],
"group": "test",

View file

@ -83,7 +83,7 @@ If VS Code is not available to you, in your clone, type `cd docker; ./run`
Once the containers are started, run the tests to make sure your checkout is a good place to start from (all tests should pass - if any fail, ask for help at tools-develop@). Inside the app container's shell type:
```sh
ietf/manage.py test --settings=settings_postgrestest
ietf/manage.py test --settings=settings_test
```
Note that we recently moved the datatracker onto PostgreSQL - you may still find older documentation that suggests testing with settings_sqlitetest. That will no longer work.
@ -228,7 +228,7 @@ before activating a new release.
From a datatracker container, run the command:
```sh
./ietf/manage.py test --settings=settings_postgrestest
./ietf/manage.py test --settings=settings_test
```
> You can limit the run to specific tests using the `--pattern` argument.

View file

@ -26,7 +26,7 @@ services:
# UID: 1001
# GID: 1001
# DATADIR: data
# DJANGO_SETTINGS_MODULE: settings_postgrestest
# DJANGO_SETTINGS_MODULE: settings_test
# Uncomment the next line to use a non-root user for all processes.
# user: dev

View file

@ -99,7 +99,7 @@ You can also open the datatracker project folder and click the **Reopen in conta
2. Wait for the containers to initialize. Upon completion, you will be dropped into a shell from which you can start the datatracker and execute related commands as usual, for example
```
ietf/manage.py runserver 0.0.0.0:8001
ietf/manage.py runserver 8001
```
to start the datatracker.

View file

@ -51,7 +51,7 @@
<div>
<p>Is the datatracker server running?</p>
<p class="mt">Using <strong>VS Code</strong>, open the <strong>Run and Debug</strong> tab on the left and click the <i>&#x2023;</i> symbol (Run Server) to start the server.</p>
<p>Otherwise, run the command <code>ietf/manage.py runserver 0.0.0.0:8001</code> from the terminal.</p>
<p>Otherwise, run the command <code>ietf/manage.py runserver 8001</code> from the terminal.</p>
</div>
<div class="mt">
<p>You can manage the database at <a href="/pgadmin">/pgadmin</a>.</p>

View file

@ -106,11 +106,11 @@ if [ -z "$EDITOR_VSCODE" ]; then
echo
echo "You can execute arbitrary commands now, e.g.,"
echo
echo " ietf/manage.py runserver 0.0.0.0:8001"
echo " ietf/manage.py runserver 8001"
echo
echo "to start a development instance of the Datatracker."
echo
echo " ietf/manage.py test --settings=settings_postgrestest"
echo " ietf/manage.py test --settings=settings_test"
echo
echo "to run all the python tests."
echo

View file

@ -2,7 +2,7 @@
set -e
# Adding the extension to the default template is needed to allow the test-suite
# to be run on postgres (see ietf.settings_postgrestest). The test runner always
# to be run on postgres (see ietf.settings_test). The test runner always
# makes a fresh test database instance, and since we are bypassing the migration
# framework and using a fixture to set the database structure, there's no reaonable
# way to install the extension as part of the test run.

View file

@ -6,7 +6,7 @@
# useful for speeding up tests that depend on the test database, try
# for instance:
#
# ./manage.py test --settings=settings_postgrestest doc.ChangeStateTestCase
# ./manage.py test --settings=settings_test doc.ChangeStateTestCase
#
import os