Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rkube committed Nov 12, 2020
1 parent dbdbece commit e4cbe20
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is a basic workflow to help you get started with Actions

name: CI
name: pytest

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
Expand Down Expand Up @@ -37,4 +37,10 @@ jobs:

# Runs a single command using the runners shell
- name: pytest
run: pytest --cov=delta tests
run: pytest --cov=delta --junitxml=test_results.xml tests
- name: Upload pytest test results
uses: actions/upload-artifact@v2
with:
name: pytest-results
path: test_results.xml
if: ${{ always }}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
[docs-image]: https://readthedocs.org/projects/delta-fusion/badge/?version=latest
[docs-url]: https://delta-fusion.readthedocs.io/en/latest/?badge=latest
[pytest-url]: https://github.com/rkube/delta/workflows/pytest/badge.svg

-------------------------------------------------------------------------------
[![Documentation Status][docs-image]][docs-url]
[![Unit Tests][pytest-url]]

**[Documentation](https://delta-fusion.readthedocs.io/en/latest/index.html)

Expand Down

0 comments on commit e4cbe20

Please sign in to comment.