Skip to content

Commit

Permalink
testing git
Browse files Browse the repository at this point in the history
  • Loading branch information
jtisbell4 committed Apr 18, 2024
1 parent 124f93a commit 36f633c
Showing 1 changed file with 26 additions and 22 deletions.
48 changes: 26 additions & 22 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,30 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-tags: true
- 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
- name: test
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
ls
git status
# - 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

0 comments on commit 36f633c

Please sign in to comment.