Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
e3rd committed Jan 9, 2025
1 parent ede6d75 commit fe8a04d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/run-unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ jobs:
- name: Install dependencies
run: pip install -e .
- name: Run tests
run: python3 -m unittest discover tests
# run: python3 -m unittest discover tests TODO
run: python3 -m unittest tests.test_disk.TestSymlinked.test_basic
3 changes: 2 additions & 1 deletion tests/test_disk.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ def setUp(self):

def test_basic(self):
state = FolderState(self, self.disk / "folder1", self.disk / "folder2")
d = drun(["rename", "execute"], [], [], [], **state)
# d = drun(["rename", "execute"], [], [], [], **state) TODO
d = drun(["rename", "execute"], [], [], {"log_level": 10}, **state)
import sys
print("12: d.log", d.changes, file=sys.stderr) # TODO

Expand Down

0 comments on commit fe8a04d

Please sign in to comment.