We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49c3871 commit 7c2a780Copy full SHA for 7c2a780
lambdas/mns_subscription/Makefile
@@ -1,8 +1,10 @@
1
+RUN_ENV := @PYTHONPATH=src:../shared/src
2
+
3
subscribe:
- @PYTHONPATH=src poetry run python src/subscribe_mns.py
4
+ $(RUN_ENV) poetry run python src/subscribe_mns.py
5
6
unsubscribe:
- @PYTHONPATH=src poetry run python src/unsubscribe_mns.py
7
+ $(RUN_ENV) poetry run python src/unsubscribe_mns.py
8
9
TEST_ENV := @PYTHONPATH=src:tests:../shared/src
10
0 commit comments