Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
Restore test tear down
Browse files Browse the repository at this point in the history
  • Loading branch information
kennylajara committed Jun 18, 2021
1 parent d3d304a commit cbe25e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/cli/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def tearDown(self) -> None:
"""Clean the environment after running the tests."""
if os.path.exists(f"{self._context}/init/.runup"):
rmdir_recursive(f"{self._context}/init/.runup")
# if os.path.exists(f"{self._context}/create-backup/.runup"):
# rmdir_recursive(f"{self._context}/create-backup/.runup")
if os.path.exists(f"{self._context}/create-backup/.runup"):
rmdir_recursive(f"{self._context}/create-backup/.runup")


def test_help(self):
Expand Down

2 comments on commit cbe25e0

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pytest-coverage-badge

Name Stmts Miss Cover
runup/init.py 0 0 100%
runup/cli.py 62 8 87%
runup/interpreter.py 209 41 80%
runup/runupdb.py 71 4 94%
runup/utils.py 32 0 100%
runup/version.py 3 0 100%
runup/yaml_parser.py 101 16 84%
TOTAL 478 69 86%

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pytest-coverage-badge

Name Stmts Miss Cover
runup/init.py 0 0 100%
runup/cli.py 62 8 87%
runup/interpreter.py 209 41 80%
runup/runupdb.py 71 4 94%
runup/utils.py 32 0 100%
runup/version.py 3 0 100%
runup/yaml_parser.py 101 16 84%
TOTAL 478 69 86%

Please sign in to comment.