Skip to content

Commit 7011e69

Browse files
committed
Fix escaping of $ in Makefile to adjust PATH
1 parent 1f2690c commit 7011e69

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
In Development
2+
--------------
3+
4+
* Fixes in tests.
5+
16
2.1.1 (February 26, 2024)
27
-------------------------
38

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ typing:
1717

1818
.PHONY: test
1919
test:
20-
PYTHONPATH=.:$PYTHONPATH pytest --cov=email_validator -k "not network"
20+
PYTHONPATH=.:$$PYTHONPATH pytest --cov=email_validator -k "not network"
2121

2222
.PHONY: testcov
2323
testcov: test

0 commit comments

Comments
 (0)