Skip to content

Commit

Permalink
uncomment
Browse files Browse the repository at this point in the history
  • Loading branch information
jtisbell4 committed Apr 18, 2024
1 parent d5e60cb commit 13efc50
Showing 1 changed file with 22 additions and 26 deletions.
48 changes: 22 additions & 26 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,30 +18,26 @@ jobs:
with:
fetch-depth: 0
fetch-tags: true
- name: test
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Test with tox
working-directory: ./python
run: tox
- name: Generate coverage report
working-directory: ./python
run: |
ls
git describe --abbrev=0 --tags
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# python -m pip install tox tox-gh-actions
# - name: Test with tox
# working-directory: ./python
# run: tox
# - name: Generate coverage report
# working-directory: ./python
# run: |
# python -I -m pip install 'coverage<8,>=7' pyspark==3.2.1 -r requirements.txt
# coverage run -m unittest discover -s tests -p '*_tests.py'
# coverage combine
# coverage xml
# - name: Publish test coverage
# uses: codecov/codecov-action@v3
# with:
# fail_ci_if_error: true
# files: ./python/coverage.xml
python -I -m pip install 'coverage<8,>=7' pyspark==3.2.1 -r requirements.txt
coverage run -m unittest discover -s tests -p '*_tests.py'
coverage combine
coverage xml
- name: Publish test coverage
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
files: ./python/coverage.xml

0 comments on commit 13efc50

Please sign in to comment.