BUG: updated test_fetch_format_ssj_boundary_files_no_rm_temp
#379
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a | |
# variety of Python versions. For more information see: | |
# https://help.github.com/actions/language-and-framework-guides/ | |
# using-python-with-github-actions | |
name: unittest with flake8 | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
install-extras: ["base", "pysat_instruments", "dmsp_ssj"] | |
name: Python ${{ matrix.python-version }} on ${{ matrix.os }} with ${{ matrix.install-extras }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install standard and test dependencies | |
run: pip install .[test] | |
- name: Install extra dependencies | |
if: ${{ !startsWith(matrix.install-extras, 'base') }} | |
run: pip install .[${{ matrix.install-extras }}] | |
- name: Set up pysat | |
if: startsWith(matrix.install-extras, 'pysat') | |
run: | | |
mkdir pysatData | |
python -c "import pysat; pysat.params['data_dirs'] = 'pysatData'" | |
- name: Test PEP8 compliance | |
run: flake8 . --count --show-source --statistics | |
- name: Evaluate complexity | |
run: flake8 . --count --exit-zero --max-complexity=10 --statistics | |
- name: Run unit and integration tests | |
run: | | |
coverage run --rcfile=pyproject.toml -m unittest discover | |
coverage report | |
coverage xml --rcfile=pyproject.toml | |
- name: Install and run Coveralls Reporter(Linux) | |
if: startsWith(matrix.os, 'ubuntu') | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
COVERALLS_PARALLEL: true | |
run: | | |
curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz | |
./coveralls report -f coverage.xml --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} | |
- name: Install and run Coveralls Reporter (Windows) | |
if: startsWith(matrix.os, 'windows') | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
COVERALLS_PARALLEL: true | |
run: | | |
curl -L https://github.com/coverallsapp/coverage-reporter/releases/latest/download/coveralls-windows.exe -o coveralls.exe | |
./coveralls.exe report -f coverage.xml --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} | |
- name: Report and run Coveralls (macOS) | |
if: startsWith(matrix.os, 'macos') | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
COVERALLS_PARALLEL: true | |
run: | | |
brew tap coverallsapp/coveralls --quiet | |
brew install coveralls --quiet | |
coveralls report -f coverage.xml --parallel --repo-token=${{ secrets.COVERALLS_REPO_TOKEN }} --build-number ${{ github.run_number }} | |
finish: | |
name: Finish Coverage Analysis | |
needs: build | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Coveralls Finished | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
COVERALLS_PARALLEL: true | |
run: | | |
curl -sL https://coveralls.io/coveralls-linux.tar.gz | tar -xz | |
./coveralls done --build-number ${{ github.run_number }} |