Skip to content

Commit 8ba2989

Browse files
committed
[Test] (code) Remove the new setting of dependency 'coverage' setting.
1 parent 0ef428e commit 8ba2989

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/organize_and_generate_test_cov_reports.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
python3 -m pip install --upgrade pip
5656
pip3 install -U pip
57-
pip3 install 'coverage >= 6.2, <= 6.4.4'
57+
pip3 install coverage
5858
5959
- name: Combine all testing coverage data files with test type and runtime OS, and convert to XML format file finally
6060
run: bash ./scripts/ci/combine_coverage_reports.sh ${{ inputs.test_type }} ${{ inputs.test_os }} true

requirements/requirements-test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pytest-html >= 3.1.1
66
pytest-rerunfailures >= 10.2
77

88
## For calculating code coverage ##
9-
coverage >= 6.2, <= 6.4.4 # In Python 3.6, its latest version supported is 6.2. But it supports 6.4 version in Python 3.10.
9+
coverage >= 6.2 # In Python 3.6, its latest version supported is 6.2. But it supports 6.4 version in Python 3.10.
1010
codecov >= 2.1.12
1111
coveralls >= 3.3.1
1212

0 commit comments

Comments
 (0)