-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed searchid bug, added unit tests, improved main readme (#236)
* fixed searchid bug and added unit tests * readme tweaks * black line length * change line length in flake settings * revert line length change, going to do it in separate PR * autoformatter * retrigger github actions * Delete scripts/test-mosaic * hack for not needing secrets AZURITE_ACCOUNT_KEY * shorten command * testing output * remove grep * quotes * trying another method * trying another method * remove extra echo * tweaks * remove echo * use env * test failure * fail step * try removing azurite from api validator * autoformatter * pipeline tweak * Delete storage-use-azurite?tabs=visual-studio,blob-storage --------- Co-authored-by: Marc Lichtman <[email protected]>
- Loading branch information
Showing
5 changed files
with
123 additions
and
26 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
isort --overwrite-in-place pccommon | ||
isort --overwrite-in-place pccommon/pccommon | ||
isort --overwrite-in-place pccommon/tests | ||
isort --overwrite-in-place pcfuncs | ||
isort --overwrite-in-place scripts/bin | ||
isort --overwrite-in-place pctiler/pctiler | ||
isort --overwrite-in-place pctiler/tests | ||
isort --overwrite-in-place pcstac/pcstac | ||
isort --overwrite-in-place pcstac/tests | ||
black pccommon/pccommon | ||
black pccommon/tests | ||
black pcfuncs | ||
black scripts/bin | ||
black pcstac/pcstac | ||
black pcstac/tests | ||
black pccommon | ||
black pctiler/pctiler | ||
black pctiler/tests |