Skip to content

Commit

Permalink
Fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdhutchins committed Jan 6, 2024
1 parent 1389ee9 commit ed7783d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.7]

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions tests/test_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_mygene(self):
mg.query_mygene()
os.remove(self.outfile)

def test_mv():
def test_mv(self):
# Create a file to move
with open("test.txt", "w") as f:
f.write("Test content")
Expand All @@ -73,7 +73,7 @@ def test_mv():
# Clean up
os.remove("moved.txt")

def test_cp():
def test_cp(self):
# Create a file to copy
with open("test.txt", "w") as f:
f.write("Test content")
Expand Down

0 comments on commit ed7783d

Please sign in to comment.