Skip to content

Commit

Permalink
fix: install pkg and ignore tutorials (#1018)
Browse files Browse the repository at this point in the history
* For Postgres CI, add cmd to install packages
* Ignore CI for notebook 14
* It could work with Postgres CI, but we don't have an OpenAI key setup
for CI. It still will fail in the end.
  • Loading branch information
jiashenC authored Aug 31, 2023
1 parent 3f05ee8 commit 9f1653f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ jobs:
pip install --upgrade pip
source test_evadb/bin/activate
pip install ".[dev]"
pip install -r evadb/third_party/databases/postgres/requirements.txt
- run:
name: Run integration tests
Expand Down
2 changes: 1 addition & 1 deletion script/test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ long_integration_test() {
}

notebook_test() {
PYTHONPATH=./ python -m pytest --durations=5 --nbmake --overwrite "./tutorials" --capture=sys --tb=short -v --log-level=WARNING --nbmake-timeout=3000 --ignore="tutorials/08-chatgpt.ipynb"
PYTHONPATH=./ python -m pytest --durations=5 --nbmake --overwrite "./tutorials" --capture=sys --tb=short -v --log-level=WARNING --nbmake-timeout=3000 --ignore="tutorials/08-chatgpt.ipynb" --ignore="tutorials/14-food-review-tone-analysis-and-response.ipynb"
code=$?
print_error_code $code "NOTEBOOK TEST"
}
Expand Down

0 comments on commit 9f1653f

Please sign in to comment.