Skip to content

Commit

Permalink
406 relative path (#408)
Browse files Browse the repository at this point in the history
* Changed relative path to project config

* lint

* fixed failing test

* fixed failing test

* merge from dev and fix conflicts

---------

Co-authored-by: nsheff <nsheff@users.noreply.github.com>
Co-authored-by: Donald Campbell <125581724+donaldcampbelljr@users.noreply.github.com>
  • Loading branch information
3 people committed Sep 7, 2023
1 parent cd31351 commit 9c41cc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/smoketests/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,8 +395,8 @@ def test_looper_other_plugins(self, prep_temp_pep, plugin, appendix):
x = test_args_expansion(tp, "run")
try:
main(test_args=x)
except Exception:
raise pytest.fail("DID RAISE {0}".format(Exception))
except Exception as err:
raise pytest.fail(f"DID RAISE {err}")
sd = os.path.join(get_outdir(tp), "submission")
verify_filecount_in_dir(sd, appendix, 3)

Expand Down

0 comments on commit 9c41cc0

Please sign in to comment.