Skip to content

Commit

Permalink
ci: also run tests in parallel for snowflake
Browse files Browse the repository at this point in the history
  • Loading branch information
machow committed Mar 29, 2022
1 parent 5c34b21 commit e8bdd46
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,12 @@ jobs:
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -r requirements-test.txt
python -m pip install pytest-parallel
python -m pip install snowflake-sqlalchemy==1.3.3
python -m pip install .
- name: Test with pytest
run: |
pytest siuba -m snowflake
pytest siuba -m snowflake --workers 2 --tests-per-worker 20
env:
SB_TEST_SNOWFLAKEPASSWORD: ${{ secrets.SB_TEST_SNOWFLAKEPASSWORD }}
SB_TEST_SNOWFLAKEHOST: ${{ secrets.SB_TEST_SNOWFLAKEHOST }}
Expand Down

0 comments on commit e8bdd46

Please sign in to comment.