You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR introduces a few improvements to our test suite to make it more
modular.
1) Adds the ability to run tests against specific file(s) using the
poetry scripting:
```bash
poetry run test tests/unit/test_fields.py
```
2) Adds the ability to toggle the API-enabled tests via command line arg
using the poetry scripting
```bash
poetry run test-verbose --run-api-tests
```
OR
```bash
make test-all
```
*This removes the need to set those ugly `SKIP_VECTORIZER=true` flags.*
And run without the API dependencies:
```bash
poetry run test-verbose
```
```bash
make test
```
3) Wraps notebook tests into a convenient poetry script and makefile
wrapper:
```bash
poetry run test-notebooks
```
OR
```bash
make test-notebooks
```
0 commit comments