Skip to content

Commit

Permalink
merge unittest-prerelease.yml into unittest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Linchin committed Apr 12, 2024
1 parent 7149504 commit f3d6f42
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 33 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/unittest-prerelease.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,33 @@ jobs:
name: coverage-artifact-${{ matrix.python }}
path: .coverage-${{ matrix.python }}

unit-prerelease:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.12']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install nox
run: |
python -m pip install --upgrade setuptools pip wheel
python -m pip install nox
- name: Run unit tests
env:
COVERAGE_FILE: .coverage-prerelease-${{ matrix.python }}
run: |
nox -s unit_prerelease
- name: Upload coverage results
uses: actions/upload-artifact@v4
with:
name: coverage-artifacts
path: .coverage-${{ matrix.python }}

cover:
runs-on: ubuntu-latest
needs:
Expand Down
2 changes: 1 addition & 1 deletion owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"pandas": "https://pandas.pydata.org/pandas-docs/stable/"
},
)
s.move(templated_files, excludes=["docs/multiprocessing.rst", "README.rst"])
s.move(templated_files, excludes=["docs/multiprocessing.rst", "README.rst", ".github/workflows/unittest.yml"])

# ----------------------------------------------------------------------------
# Fixup files
Expand Down

0 comments on commit f3d6f42

Please sign in to comment.