File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -55,10 +55,16 @@ jobs:
5555 - name : Install library
5656 run : poetry install --no-interaction
5757 # ----------------------------------------------
58+ # install additional dependencies for e2e tests
59+ # ----------------------------------------------
60+ - name : Install e2e test dependencies
61+ run : poetry run pip install pyarrow
62+ # ----------------------------------------------
5863 # run test suite
5964 # ----------------------------------------------
6065 - name : Run tests with coverage
61- run : poetry run python -m pytest tests/unit --cov=src --cov-report=xml --cov-report=term
66+ continue-on-error : true
67+ run : poetry run python -m pytest tests/unit tests/e2e --cov=src --cov-report=xml --cov-report=term
6268 # ----------------------------------------------
6369 # check for coverage override
6470 # ----------------------------------------------
You can’t perform that action at this time.
0 commit comments