aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/README.markdown')
-rw-r--r--tests/README.markdown9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/README.markdown b/tests/README.markdown
index ae3e42a..49bf894 100644
--- a/tests/README.markdown
+++ b/tests/README.markdown
@@ -23,10 +23,10 @@ Note that some tests are slightly unstable, as they require sidekiq to do things
23 23
24This test suite uses [VCR.py][] to record requests to Mastodon and replay them in successive runs. 24This test suite uses [VCR.py][] to record requests to Mastodon and replay them in successive runs.
25 25
26If you want to add or change tests, you will need a Mastodon development server running on `http://localhost:3000`, with the default `admin` user and default password. 26If you want to add or change tests, you will need a Mastodon development server running on `http://localhost:3000`.
27To set this up, follow the development guide and set up the database using "rails db:setup". 27To set this up, follow the development guide at https://docs.joinmastodon.org/dev/setup/ .
28 28
29It also needs various things to be set up for it. The following command should do the trick: 29It also needs various things to be set up for it. The following command will do the trick:
30 30
31 sudo redis-cli flushall && sleep 3 && \ 31 sudo redis-cli flushall && sleep 3 && \
32 sudo /etc/init.d/redis-server restart && \ 32 sudo /etc/init.d/redis-server restart && \
@@ -39,7 +39,8 @@ It also needs various things to be set up for it. The following command should d
39 39
40You _may_ additionally have to set up a database password and pass it as DB_PASS for the streaming tests to function. 40You _may_ additionally have to set up a database password and pass it as DB_PASS for the streaming tests to function.
41 41
42Tests that send requests to Mastodon should be marked as needing VCR with the `pytest.mark.vcr` decorator. 42Tests that send requests to Mastodon should be marked as needing VCR with the `pytest.mark.vcr` decorator. Streaming tests use a
43heavily monkeypatched version of VCR.py to work and may behave in weird ways sometimes.
43 44
44```python 45```python
45import pytest 46import pytest
Powered by cgit v1.2.3 (git 2.41.0)