-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding configuration options to uniques functionality (#224)
adding configuration options to uniques functionality (#224) Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> Docs update Co-authored-by: Kevin Klein <[email protected]> update doc string on null columns everywhere and fix typo Update docs Co-authored-by: Kevin Klein <[email protected]> Update docs Co-authored-by: Kevin Klein <[email protected]> Update docs Co-authored-by: Kevin Klein <[email protected]> docs updates update docs filternull docs clarification replace assert by raise ValueError shorten name to apply_output_formatting add unit tests for new utils functions set default to limit 100 elements ensure all relevant tests run for impala and ensure they pass disable extralong test for bigquery due to slow speed capitalization test handle parallel if table already created
- Loading branch information
1 parent
2043974
commit 28742ec
Showing
11 changed files
with
1,427 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
docker stop $(docker ps -q --filter name=postgres_datajudge) | ||
|
||
./start_postgres.sh & | ||
bash -c "while true; do printf '\nPress enter once postgres is ready: '; sleep 1; done" & | ||
|
||
read -p "Press enter to once postgres is ready: " | ||
kill %% | ||
|
||
echo "STARTING PYTEST" | ||
pytest tests/integration -vv --backend=postgres "$@" | ||
|
||
docker stop $(docker ps -q --filter name=postgres_datajudge) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.