-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e7b644
commit dd51899
Showing
16 changed files
with
2,910 additions
and
890 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: build | ||
|
||
on: [push] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
- name: Install pip dependencies | ||
run: | | ||
pip install -r requirements.txt | ||
pip install pytest | ||
- name: Run tests | ||
run: pytest tests |
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 |
---|---|---|
@@ -1,2 +1,20 @@ | ||
# defog_utils | ||
Internal utilities library for Defog | ||
|
||
Internal utilities library for Defog. These utilities comprise: | ||
* sql/schema/instruction feature extraction | ||
* database connectors and validators | ||
|
||
These utilities should be purely stateless and have minimal library dependencies. | ||
|
||
## Installation | ||
|
||
```bash | ||
pip install -e . | ||
``` | ||
We recommend using `-e` flag to install in editable mode, since we foresee frequent updates to this library. | ||
|
||
## Tests | ||
|
||
```bash | ||
pytest | ||
``` |
Empty file.
Oops, something went wrong.