Skip to content

Commit

Permalink
changed tests to execute comment_spell_check directly
Browse files Browse the repository at this point in the history
  • Loading branch information
dave3d committed Jan 28, 2025
1 parent 581f2c3 commit 61fad67
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions tests/test_comment_spell_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ def test_basic(self):
"""Basic test"""
runresult = subprocess.run(
[
"python",
"comment_spell_check.py",
"comment_spell_check",
"--miss",
"--dict",
"tests/dict.txt",
Expand All @@ -50,8 +49,7 @@ def test_codebase(self):
"""Code base test"""
runresult = subprocess.run(
[
"python",
"comment_spell_check.py",
"comment_spell_check",
"--miss",
"--prefix",
"myprefix",
Expand All @@ -69,8 +67,7 @@ def test_version(self):
"""Version test"""
runresult = subprocess.run(
[
"python",
"comment_spell_check.py",
"comment_spell_check",
"--version",
],
stdout=subprocess.PIPE,
Expand All @@ -86,8 +83,7 @@ def test_bibtex(self):
"""Bibtext test"""
runresult = subprocess.run(
[
"python",
"comment_spell_check.py",
"comment_spell_check",
"--bibtex",
"tests/itk.bib",
"tests/bibtest.py",
Expand Down

0 comments on commit 61fad67

Please sign in to comment.