pull/81/head
smark-1 2024-11-24 19:14:45 -05:00 zatwierdzone przez GitHub
rodzic f3b0986c0f
commit d66b709bb4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
2 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -43,7 +43,7 @@ migrate: ## Migrate the wagtail bakery site migrations
test: ## Run all wagtail tests or pass in a file with `make test file=wagtail.admin.tests.test_name`
docker compose exec -w /code/wagtail web python runtests.py $(file) $(FILE)
test-parallel: ## Same as make test but will run tests in parallel
test-parallel: ## Equivalent to make test, but runs tests in parallel
docker compose exec -w /code/wagtail web python runtests.py $(file) $(FILE) --parallel
format-wagtail: ## Format Wagtail repo

Wyświetl plik

@ -136,6 +136,7 @@ docker compose down
### Run tests
```sh
# run make test-parallel for tests to run faster but error messages can be more cryptic
make test
```