@@ -143,7 +143,7 @@ but the test for layout + styling fails. Good job, tests!
143
143
[role="small-code"]
144
144
[subs="specialcharacters,macros"]
145
145
----
146
- $ pass:quotes[*TEST_SERVER=localhost:8888 python manage.py test functional_tests*]
146
+ $ pass:quotes[*TEST_SERVER=localhost:8888 python src/ manage.py test src/ functional_tests*]
147
147
[...]
148
148
AssertionError: 102.5 != 512 within 10 delta (409.5 difference)
149
149
FAILED (failures=1)
@@ -210,7 +210,7 @@ Let's rerun our FTs to confirm:
210
210
[role="small-code"]
211
211
[subs="specialcharacters,macros"]
212
212
----
213
- $ pass:quotes[*TEST_SERVER=localhost:8888 python manage.py test functional_tests --failfast*]
213
+ $ pass:quotes[*TEST_SERVER=localhost:8888 python src/ manage.py test src/ functional_tests --failfast*]
214
214
[...]
215
215
216
216
...
@@ -364,7 +364,7 @@ With that running, we can use our FT again to see if we're back to a working sta
364
364
[role="small-code"]
365
365
[subs="specialcharacters,macros"]
366
366
----
367
- $ pass:quotes[*TEST_SERVER=localhost:8888 ./manage.py test functional_tests --failfast*]
367
+ $ pass:quotes[*TEST_SERVER=localhost:8888 ./src/ manage.py test src/ functional_tests --failfast*]
368
368
[...]
369
369
AssertionError: 'To-Do' not found in 'Bad Request (400)'
370
370
----
@@ -454,7 +454,7 @@ in our static files.
454
454
[role="small-code"]
455
455
[subs="specialcharacters,macros"]
456
456
----
457
- $ pass:quotes[*TEST_SERVER=localhost:8888 python manage.py test functional_tests*]
457
+ $ pass:quotes[*TEST_SERVER=localhost:8888 python src/ manage.py test src/ functional_tests*]
458
458
[...]
459
459
AssertionError: 102.5 != 512 within 10 delta (409.5 difference)
460
460
FAILED (failures=1)
@@ -488,7 +488,7 @@ Well, it was fiddly, but that should get us to passing tests!
488
488
[role="small-code"]
489
489
[subs="specialcharacters,macros"]
490
490
----
491
- $ pass:quotes[*TEST_SERVER=localhost:8888 python manage.py test functional_tests*]
491
+ $ pass:quotes[*TEST_SERVER=localhost:8888 python src/ manage.py test src/ functional_tests*]
492
492
[...]
493
493
OK
494
494
----
@@ -532,7 +532,7 @@ Now if you run the tests, you'll see they fail;
532
532
[role="small-code"]
533
533
[subs="specialcharacters,macros"]
534
534
----
535
- $ pass:quotes[*TEST_SERVER=localhost:8888 ./src/manage.py test functional_tests --failfast*]
535
+ $ pass:quotes[*TEST_SERVER=localhost:8888 ./src/manage.py test src/ functional_tests --failfast*]
536
536
[...]
537
537
538
538
selenium.common.exceptions.NoSuchElementException: Message: Unable to locate
0 commit comments