Run EF tests on GitLab (#562)

This commit is contained in:
Michael Sproul
2019-10-22 12:35:35 +09:00
committed by GitHub
parent 96a327fe50
commit 6484d4197d
7 changed files with 65 additions and 30 deletions

View File

@@ -31,11 +31,6 @@ pub trait Handler {
.join(Self::runner_name())
.join(Self::handler_name());
// If the directory containing the tests does not exist, just let all tests pass.
if !handler_path.exists() {
return;
}
// Iterate through test suites
let test_cases = fs::read_dir(&handler_path)
.expect("handler dir exists")