Skip to content

Commit

Permalink
Fix lookup for cases when there are no tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasfryda committed Oct 19, 2023
1 parent a7eff64 commit 58f6d53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/jenkins/Makefile.jenkins
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ lookup-fault-tolerance-tests: init-lookup
find h2o-py/tests -name '*fault_tolerance*.py' -exec basename {} \; >>h2o-py/tests/.lookup.txt

lookup-explain-tests: init-lookup
find h2o-r/tests/testdir_misc/explain -name '*.R' -exec basename {} \; | grep -v NOPASS >>h2o-r/tests/.lookup.txt
find h2o-py/tests/testdir_misc/explain -name '*.py' -exec basename {} \; | grep -v NOPASS >>h2o-py/tests/.lookup.txt
find h2o-r/tests -path '*testdir_misc/explain*' -name '*.R' -not -name '*NOPASS*' -exec basename {} \; >>h2o-r/tests/.lookup.txt
find h2o-py/tests -path '*testdir_misc/explain*' -name '*.py' -not -name '*NOPASS*' -exec basename {} \; >>h2o-py/tests/.lookup.txt

lookup-mojo-to-assembly-tests: init-lookup
find h2o-r/tests -name '*h2oassembly_download_mojo*.R' -exec basename {} \; >>h2o-r/tests/.lookup.txt
Expand Down

0 comments on commit 58f6d53

Please sign in to comment.