Skip to content

fix: pipenv

fix: pipenv #210

Workflow file for this run

name: Unittests
on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
# check out repo
- uses: actions/checkout@v4
# install all deps in pipenv
- name: install_deps
uses: VaultVulp/[email protected]
with:
command: install -d
# show installed deps in graph
- name: show_graph
uses: VaultVulp/[email protected]
with:
command: graph # shows installed pip packages
# run pytest through coverage package
- name: test
uses: VaultVulp/[email protected]
with:
command: |
run coverage run -m pytest
# generate coverage report
- name: report
uses: VaultVulp/[email protected]
with:
command: |
run coverage report
# upload coverage to codecov
- name: upload
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: very-doge-wow/stella