aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorjahoti <jahoti@tilde.team>2021-12-03 00:00:00 +0000
committerjahoti <jahoti@tilde.team>2021-12-03 00:00:00 +0000
commit3fcff3382d439c0451421288f1d7d942be0de0c8 (patch)
tree33d7dd06621d544a54d7ae6acffb89f7030293ef /Makefile.in
parentd16e763e240a2aefe3d4490cddff61893a35a1ea (diff)
downloadbrowser-extension-3fcff3382d439c0451421288f1d7d942be0de0c8.tar.gz
browser-extension-3fcff3382d439c0451421288f1d7d942be0de0c8.zip
Make testing configurable
Add options to configure in accordance with #97
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 5a376e1..ffbad61 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -70,10 +70,10 @@ test/certs/rootCA.pem: test/certs/rootCA.key
-subj "/CN=Haketilo Test"
test: test/certs/rootCA.pem test/certs/site.key
- MOZ_HEADLESS=whatever pytest
+ MOZ_HEADLESS=whatever $(PYTEST)
test-environment: test/certs/rootCA.pem test/certs/site.key
- python3 -m test
+ $(PYTHON) -m test
# helper targets
clean mostlyclean:
@@ -85,7 +85,7 @@ clean mostlyclean:
rm -rf $$(find . -type d -name __pycache__)
distclean: clean
- rm -f Makefile config.status record.conf
+ rm -f Makefile config.status record.conf testing.conf
maintainer-clean: distclean
@echo 'This command is intended for maintainers to use; it'