Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
loriab committed Aug 7, 2023
1 parent 7d3c87e commit 493a852
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qcengine/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def parse_args():
run_procedure = subparsers.add_parser(
"run-procedure",
parents=[parent_parser],
help="Run a procedure on a given task. " "Output is printed as a JSON blob.",
help="Run a procedure on a given task. Output is printed as a JSON blob.",
)
run_procedure.add_argument("procedure", type=str, help="The procedure to run.")
run_procedure.add_argument(
Expand Down
2 changes: 1 addition & 1 deletion qcengine/tests/test_procedures.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_geometric_psi4(input_data, optimizer, ncores):
assert ret.provenance.creator.lower() == optimizer
assert ret.trajectory[0].provenance.creator.lower() == "psi4"

if optimizer == "optking" and ncores == 4:
if optimizer == "optking":
pytest.xfail("not passing threads to psi4")
else:
assert ret.trajectory[0].provenance.nthreads == ncores
Expand Down

0 comments on commit 493a852

Please sign in to comment.