Skip to content

Commit

Permalink
fix gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 committed Sep 28, 2023
1 parent 0952905 commit 7878337
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions metadata-ingestion-modules/airflow-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ task testSingle(dependsOn: [installDevTest]) {
}
}

task test(type: Exec, dependsOn: installDevTest) {
task testQuick(type: Exec, dependsOn: installDevTest) {
inputs.files(project.fileTree(dir: "src/", include: "**/*.py"))
inputs.files(project.fileTree(dir: "tests/"))
commandLine 'bash', '-x', '-c',
"source ${venv_name}/bin/activate && pytest -vv --continue-on-collection-errors --junit-xml=junit.xml"
"source ${venv_name}/bin/activate && pytest -vv --continue-on-collection-errors --junit-xml=junit.quick.xml"
}


Expand All @@ -122,7 +122,7 @@ task buildWheel(type: Exec, dependsOn: [install, cleanPythonCache]) {

build.dependsOn install
check.dependsOn lint
check.dependsOn test
check.dependsOn testQuick

clean {
delete venv_name
Expand Down

0 comments on commit 7878337

Please sign in to comment.