Skip to content

Commit

Permalink
Small cleanup
Browse files Browse the repository at this point in the history
- Remove print statement
- Ensure the virtualenv directory is ignored during tests and image
  builds
  • Loading branch information
jdholtz committed Mar 25, 2023
1 parent b7d2f8b commit bae175a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ config.json
.coverage
logs/
Pipfile
venv/
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ target-version = ['py37']

[tool.coverage.run]
branch = true
omit = ["venv/*"]
omit = ["**/venv/*"]

[tool.coverage.report]
show_missing = true
Expand Down
1 change: 0 additions & 1 deletion tests/test_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
@pytest.fixture(autouse=True)
def logger():
logger = logging.getLogger("lib")
print("h")
yield logger
logger.handlers = [] # Clean up after test

Expand Down

0 comments on commit bae175a

Please sign in to comment.