mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-04 07:34:44 +00:00
12 lines
281 B
Bash
Executable File
12 lines
281 B
Bash
Executable File
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
# We allow for failures in this step. Usually you'll be invoking this
|
|
# script to fix a build failure.
|
|
pytest "$@" --update-golden-files || true
|
|
|
|
# Print success message.
|
|
set +x
|
|
echo ''
|
|
echo 'Make sure to check `git diff -w` to verify the changes!'
|