test: Convert FIREWHEEL CLI tests to pytest style#97
Draft
mitchnegus wants to merge 1 commit intosandialabs:mainfrom
Draft
test: Convert FIREWHEEL CLI tests to pytest style#97mitchnegus wants to merge 1 commit intosandialabs:mainfrom
mitchnegus wants to merge 1 commit intosandialabs:mainfrom
Conversation
d0d8d68 to
972fdfc
Compare
36419f0 to
54fcdf3
Compare
efb27e9 to
ae53753
Compare
c787112 to
6376250
Compare
ec324f7 to
e4d3686
Compare
8a1cdad to
1c8d330
Compare
36778ae to
887f694
Compare
887f694 to
c9cdf13
Compare
b61cfe4 to
29dbe49
Compare
db02790 to
029ca32
Compare
7d055d2 to
1a7c328
Compare
1a7c328 to
d4e3a0b
Compare
8ab738d to
0ac65c3
Compare
0ac65c3 to
bfc29f9
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This converts tests in
test_cli.pyto be pytest style.The size of the resulting test file is substantially reduced, since the new format relies heavily on parametrization across similar tests. It also uses pytest temporary directories provided by the
tmp_pathfixture to avoid needing to create, write, and reload configurations between tests.