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

Fix subtargets for dom0 tests #635

Merged
merged 1 commit into from
Nov 5, 2020
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
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -109,19 +109,19 @@ test: assert-dom0 ## Runs all application tests (no integration tests yet)
python3 -m unittest discover -v tests

test-base: assert-dom0 ## Runs tests for VMs layout
python3 -m unittest -v tests.test_vms_exist.SD_VM_Tests
python3 -m unittest discover -v tests -p test_vms_exist.py

test-app: assert-dom0 ## Runs tests for SD APP VM config
python3 -m unittest -v tests.test_app.SD_App_Tests
python3 -m unittest discover -v tests -p test_app.py

test-proxy: assert-dom0 ## Runs tests for SD Proxy VM
python3 -m unittest -v tests.test_proxy_vm
python3 -m unittest discover -v tests -p test_proxy_vm.py

test-whonix: assert-dom0 ## Runs tests for SD Whonix VM
python3 -m unittest -v tests.test_sd_whonix
python3 -m unittest discover -v tests -p test_sd_whonix.py

test-gpg: assert-dom0 ## Runs tests for SD GPG functionality
python3 -m unittest -v tests.test_gpg
python3 -m unittest discover -v tests -p test_gpg.py

validate: assert-dom0 ## Checks for local requirements in dev env
@./scripts/validate_config.py
Expand Down