File tree 4 files changed +10
-3
lines changed
4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -121,3 +121,7 @@ jobs:
121
121
make install-base
122
122
make install-test
123
123
make unit-test
124
+ - name : Upload results to Codecov
125
+ uses : codecov/codecov-action@v4
126
+ with :
127
+ token : ${{ secrets.CODECOV_TOKEN }}
Original file line number Diff line number Diff line change
1
+ ## 0.2.2-dev
2
+ * ** Installing code coverage**
3
+
1
4
## 0.2.1
2
5
3
6
### Enhancements
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ check-version:
119
119
# ##########
120
120
.PHONY : unit-test
121
121
unit-test :
122
- PYTHONPATH=. pytest test/unit
122
+ PYTHONPATH=. pytest test/unit --cov --cov-report=xml
123
123
124
124
.PHONY : integration-test
125
125
integration-test :
@@ -144,4 +144,4 @@ integration-test-connectors-src:
144
144
145
145
.PHONY : integration-test-connectors-dest
146
146
integration-test-connectors-dest :
147
- PYTHONPATH=. pytest --tags destination -sv test/integration/connectors
147
+ PYTHONPATH=. pytest --tags destination -sv test/integration/connectors
Original file line number Diff line number Diff line change 1
- __version__ = "0.2.1 " # pragma: no cover
1
+ __version__ = "0.2.2-dev " # pragma: no cover
You can’t perform that action at this time.
0 commit comments