Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
11 changes: 5 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply: verify
@echo "Invoking 'terraform apply'"
@terraform apply

destroy:
destroy:
@python3 .githooks/check_destroy.py
@terraform destroy

Expand All @@ -35,7 +35,7 @@ generate_json_plan:
test_cleanse:
@rm tests/datafiles/base-overrides.auto.tfvars
@rm tests/datafiles/terraform.tfvars
@rm tests/datafiles/secrets/*.json
@rm tests/datafiles/secrets/*.json

generate_test_data:
@echo "Generating test data."
Expand All @@ -45,6 +45,9 @@ generate_test_data:
run_tests:
@pytest -c tests/pytest.ini tests/

run_tests_no_containers:
@pytest -c tests/pytest.ini tests/ -m "not testcontainer"

purge_cached_plans:
@cd tests/ && rm -rf .plan_cache

Expand All @@ -55,7 +58,3 @@ purge_cache:
@echo "Purging testing caches"
@$(MAKE) purge_cached_templatefiles
@$(MAKE) purge_cached_plans




2 changes: 2 additions & 0 deletions assets/src/wave_lite_config/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ http {
server {
listen 80;

client_max_body_size 10m;

location / {
proxy_pass http://wave;

Expand Down
Loading