Skip to content

Commit

Permalink
change pytests and fix ci?
Browse files Browse the repository at this point in the history
  • Loading branch information
akarve committed Jun 1, 2024
1 parent b350fb1 commit 508672a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ push: lint check test git-branch git-unsaved
git push origin $$branch

test:
python -m pytest tests -m "not network" -sx
pytest tests -m "not network" -sx

test-network:
python -m pytest tests
pytest tests

git-branch:
@branch=$$(git symbolic-ref --short HEAD); \
Expand Down
1 change: 0 additions & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ def test_seed_command_from_words(runner):
for k, v in lengths.items():
cmd = base + ["-i", gen_custom_seed_words(v, 0)]
result = runner.invoke(cli, cmd)
logger.debug(result.output)
assert result.exit_code == 0
if k == "short":
assert "Warning" in result.output
Expand Down

0 comments on commit 508672a

Please sign in to comment.