Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing word in testing docs #12657

Merged
merged 3 commits into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/contributing/tests.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ There are several jobs to verify different aspects:
The configuration for the CI is in :file:`.github/workflows` directory. It
heavily uses helper scripts stored in :file:`ci` directory. The scripts can be
also executed manually, but they require several environment variables, mostly
defining Django settings file to use and database connection. The example
defining Django settings file to use and test database connection. The example
definition of that is in :file:`scripts/test-database.sh`:

.. literalinclude:: ../../scripts/test-database.sh
Expand All @@ -36,7 +36,7 @@ The simple execution can look like:

.. code-block:: sh

. scripts/test-database.sh
source scripts/test-database.sh
./ci/run-migrate
./ci/run-test
./ci/run-docs
Expand Down
Loading