Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-cov pytest-shell
pip install pytest pytest-cov pytest-shell pytest-shell-utilities
python setup.py install
- name: Install Python Poetry
run: |
Expand Down
2 changes: 2 additions & 0 deletions tests/utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ def utils_test_algo(argsstr="--help"):
del exp
torch.cuda.empty_cache()
gc.collect()
ret = shell.run("rm", "-rf zoutput")
assert ret.returncode == 0


def assert_frame_not_equal(*args, **kwargs):
Expand Down
Loading