Skip to content

Commit 0311c80

Browse files
committed
feat: ignore local .env
1 parent ce78090 commit 0311c80

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ htmlcov
88
build
99
dist
1010
.vscode
11+
.env

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
Versions follow [Semantic Versioning](https://semver.org/>) (<major>.<minor>.<patch>).
99

10+
### Changed
11+
12+
- Ignores local .env #3
13+
1014
### Removed
1115

1216
- Stop Python 3.8 support

pytest_iam/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ def iam_configuration(tmp_path_factory) -> dict[str, Any]:
142142
private_key, public_key = generate_keypair()
143143
return {
144144
"TESTING": True,
145+
"ENV_FILE": None,
145146
"SECRET_KEY": str(uuid.uuid4()),
146147
"WTF_CSRF_ENABLED": False,
147148
"CANAILLE": {

0 commit comments

Comments
 (0)