Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,7 @@ jobs:

- name: Run tests
run: |
pytest

- name: Upload coverage
uses: codecov/codecov-action@v2
make test

vetiver_pypi_pins_main:
name: 'vetiver pypi, pins main'
Expand Down Expand Up @@ -95,7 +92,7 @@ jobs:

- name: Run Tests
run: |
pytest
make test

vetiver_pypi_rsconnect_latest:
name: 'vetiver pypi, rsconnect latest'
Expand Down Expand Up @@ -130,6 +127,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install .[dev]
python -m pip install --upgrade git+https://github.com/rstudio/rsconnect-python
pip freeze > requirements.txt

- name: run RStudio Connect
run: |
Expand All @@ -141,7 +139,7 @@ jobs:

- name: Run Tests
run: |
pytest
pytest -m 'rsc_test'

vetiver_latest_rsconnect_latest:
name: 'vetiver latest, rsconnect latest'
Expand All @@ -164,6 +162,7 @@ jobs:
python -m pip install --upgrade pip
python -m pip install '.[all]'
python -m pip install --upgrade git+https://github.com/rstudio/rsconnect-python
pip freeze > requirements.txt

- name: run RStudio Connect
run: |
Expand All @@ -175,4 +174,4 @@ jobs:

- name: Run Tests
run: |
pytest
pytest -m 'rsc_test'