Skip to content

Commit 15572af

Browse files
committed
installing codecov
1 parent cd6aaa0 commit 15572af

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.github/workflows/unit_tests.yml

+4
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,7 @@ jobs:
121121
make install-base
122122
make install-test
123123
make unit-test
124+
- name: Upload results to Codecov
125+
uses: codecov/codecov-action@v4
126+
with:
127+
token: ${{ secrets.CODECOV_TOKEN }}

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.2.2-dev
2+
* **Installing code coverage**
3+
14
## 0.2.1
25

36
### Enhancements

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ check-version:
119119
###########
120120
.PHONY: unit-test
121121
unit-test:
122-
PYTHONPATH=. pytest test/unit
122+
PYTHONPATH=. pytest test/unit --cov --cov-report=xml
123123

124124
.PHONY: integration-test
125125
integration-test:
@@ -144,4 +144,4 @@ integration-test-connectors-src:
144144

145145
.PHONY: integration-test-connectors-dest
146146
integration-test-connectors-dest:
147-
PYTHONPATH=. pytest --tags destination -sv test/integration/connectors
147+
PYTHONPATH=. pytest --tags destination -sv test/integration/connectors

unstructured_ingest/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.1" # pragma: no cover
1+
__version__ = "0.2.2-dev" # pragma: no cover

0 commit comments

Comments
 (0)