Skip to content

Commit

Permalink
feat: ignore local .env
Browse files Browse the repository at this point in the history
  • Loading branch information
azmeuk committed Apr 22, 2024
1 parent ce78090 commit 0311c80
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ htmlcov
build
dist
.vscode
.env
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

### Changed

- Ignores local .env #3

### Removed

- Stop Python 3.8 support
Expand Down
1 change: 1 addition & 0 deletions pytest_iam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ def iam_configuration(tmp_path_factory) -> dict[str, Any]:
private_key, public_key = generate_keypair()
return {
"TESTING": True,
"ENV_FILE": None,
"SECRET_KEY": str(uuid.uuid4()),
"WTF_CSRF_ENABLED": False,
"CANAILLE": {
Expand Down

0 comments on commit 0311c80

Please sign in to comment.