Skip to content

Commit

Permalink
Fixed tests: more checks finding issues
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspatzke committed Oct 28, 2023
1 parent 409bc7f commit 6e434f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ def test_check_with_issues():
cli = CliRunner()
result = cli.invoke(check, ["tests/files/issues"])
assert result.exit_code == 0
assert "3 issues" in result.stdout
assert "4 issues" in result.stdout

def test_check_with_issues_exclusions():
cli = CliRunner()
result = cli.invoke(check, ["--validation-config", "tests/files/validation_config.yml", "tests/files/issues"])
assert result.exit_code == 0
assert "1 issues" in result.stdout
assert "2 issues" in result.stdout

def test_check_fail_on_issues():
cli = CliRunner()
Expand Down

0 comments on commit 6e434f4

Please sign in to comment.