Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
ci: smoke test (#53)
Browse files Browse the repository at this point in the history
* Update pr.yml

* test: add smoke test to main workflow

* ci: use poetry run instead
  • Loading branch information
lars-reimann committed Jan 20, 2022
1 parent 13c789c commit 3278c4d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:
- name: Install library
run: poetry install --no-interaction

- name: Smoke test
run: poetry run parse-package api -p sklearn -o out

# Requires installation of pytest and pytest-cov
- name: Test with pytest
run: poetry run pytest --doctest-modules --cov=package_parser --cov-report=html
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ jobs:
- name: Install library
run: poetry install --no-interaction

- name: Smoke test
run: poetry run parse-package api -p sklearn -o out

# Requires installation of pytest and pytest-cov
- name: Test with pytest
run: poetry run pytest --doctest-modules --cov=package_parser --cov-report=html
Expand Down

0 comments on commit 3278c4d

Please sign in to comment.