mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
Fix #295 (consider *_SUITE.beam in ct skip check)
This commit is contained in:
parent
e8557d262f
commit
9dd8e7f2ee
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ run_test_if_present(TestDir, LogDir, Config, File) ->
|
|||
?WARN("~s directory not present - skipping\n", [TestDir]),
|
||||
ok;
|
||||
true ->
|
||||
case filelib:wildcard(TestDir ++ "/*_SUITE.erl") of
|
||||
case filelib:wildcard(TestDir ++ "/*_SUITE.{beam,erl}") of
|
||||
[] ->
|
||||
?WARN("~s directory present, but no common_test"
|
||||
++ " SUITES - skipping\n", [TestDir]),
|
||||
|
|
Loading…
Reference in a new issue