Skip to content

Commit

Permalink
[MRG] disable the fix_lint component of the py38 tests in tox.ini (
Browse files Browse the repository at this point in the history
…#1823)

* add --output-dir as alias for every --outdir

* remove fix_lint from py38 tox tests
  • Loading branch information
ctb authored Feb 3, 2022
1 parent 9083d20 commit d361539
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
3 changes: 2 additions & 1 deletion src/sourmash/cli/compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ def subparser(subparsers):
help='output computed signatures to this file'
)
file_args.add_argument(
'--outdir', help='output computed signatures to this directory'
'--outdir', '--output-dir',
help='output computed signatures to this directory',
)
file_args.add_argument(
'--singleton', action='store_true',
Expand Down
3 changes: 2 additions & 1 deletion src/sourmash/cli/sig/split.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ def subparser(subparsers):
help='suppress non-error output'
)
subparser.add_argument(
'--outdir', help='output signatures to this directory'
'--outdir', '--output-dir',
help='output signatures to this directory',
)
subparser.add_argument(
'-f', '--force', action='store_true',
Expand Down
3 changes: 2 additions & 1 deletion src/sourmash/cli/sketch/dna.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ def subparser(subparsers):
'specified name'
)
file_args.add_argument(
'--outdir', help='output computed signatures to this directory'
'--outdir', '--output-dir',
help='output computed signatures to this directory',
)
file_args.add_argument(
'--singleton', action='store_true',
Expand Down
3 changes: 2 additions & 1 deletion src/sourmash/cli/sketch/protein.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ def subparser(subparsers):
'specified name'
)
file_args.add_argument(
'--outdir', help='output computed signatures to this directory'
'--outdir', '--output-dir',
help='output computed signatures to this directory',
)
file_args.add_argument(
'--singleton', action='store_true',
Expand Down
3 changes: 2 additions & 1 deletion src/sourmash/cli/sketch/translate.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ def subparser(subparsers):
'specified name'
)
file_args.add_argument(
'--outdir', help='output computed signatures to this directory'
'--outdir', '--output-dir',
help='output computed signatures to this directory',
)
file_args.add_argument(
'--singleton', action='store_true',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ source = src/sourmash/
[gh-actions]
python =
3.7: py37, coverage, codecov
3.8: py38, docs, package_description, fix_lint, coverage, codecov
3.8: py38, docs, package_description, coverage, codecov
3.9: py39, coverage, codecov
[flake8]
Expand Down

0 comments on commit d361539

Please sign in to comment.