Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix gradle quoting
  • Loading branch information
hsheth2 committed Jul 2, 2021
commit 7dad6478f450a99ee3ff6834ed4b711c6a15e4c1
4 changes: 2 additions & 2 deletions metadata-ingestion/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ task lintFix(type: Exec, dependsOn: installDev) {
task testQuick(type: Exec, dependsOn: installDev) {
// We can't enforce the coverage requirements if we run a subset of the tests.
commandLine 'bash', '-x', '-c',
'source ${venv_name}/bin/activate && pytest -m "not slow" -vv --cov-fail-under 0'
"source ${venv_name}/bin/activate && pytest -m 'not slow' -vv --cov-fail-under 0"
}
task testFull(type: Exec, dependsOn: installDev) {
commandLine 'bash', '-x', '-c',
'source ${venv_name}/bin/activate && pytest -vv'
"source ${venv_name}/bin/activate && pytest -vv"
}

build.dependsOn install
Expand Down