1
0
mirror of synced 2025-12-25 02:09:19 -05:00

add dependency on installing test reqs (#864)

This commit is contained in:
Jared Rhizor
2020-11-09 15:35:59 -08:00
committed by GitHub
parent d7585a6f34
commit adcb8b2fab

View File

@@ -59,7 +59,7 @@ class AirbytePythonPlugin implements Plugin<Project> {
}
if(project.file('unit_tests').exists()) {
project.task('unitTest', type: PythonTask) {
project.task('unitTest', type: PythonTask, dependsOn: project.installTestReqs) {
module = "pytest"
command = "unit_tests"
}