Skip to content

Commit

Permalink
fix parser
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinsulzer committed Feb 18, 2023
1 parent 2bb41d3 commit ce7bf1d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions run-tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,12 +325,24 @@ def export_notebook(ipath, opath):
metavar=("in", "out"),
help="Export a Jupyter notebook to a Python file for manual testing.",
)
# Flake8 (deprecated)
parser.add_argument(
"--flake8",
action="store_true",
help="Run flake8 to check for style issues (deprecated, use pre-commit)",
)
# Doctests
parser.add_argument(
"--doctest",
action="store_true",
help="Run any doctests, check if docs can be built",
)
# Combined test sets
parser.add_argument(
"--quick",
action="store_true",
help="Run quick checks (code tests, docs)",
)
# Non-standard Python interpreter name for subprocesses
parser.add_argument(
"--interpreter",
Expand Down

0 comments on commit ce7bf1d

Please sign in to comment.