Skip to content

Commit

Permalink
cleanup workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
simbilod committed Dec 8, 2024
1 parent cfe6d33 commit 50b198d
Showing 1 changed file with 0 additions and 86 deletions.
86 changes: 0 additions & 86 deletions .github/workflows/test_code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,89 +42,3 @@ jobs:
uv pip install -e ".[dev]"
- name: Test
run: uv run pytest -n auto


# name: Test pre-commit, code and docs

# on:
# pull_request:
# push:
# branches:
# - main

# jobs:
# pre-commit:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v5
# - uses: pre-commit/[email protected]
# test_code:
# needs: [pre-commit]
# runs-on: [ubuntu-latest]
# strategy:
# max-parallel: 12
# matrix:
# python-version: ["3.10"]
# os: [ubuntu-latest]
# steps:
# - uses: actions/checkout@v4
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# cache: "pip"
# cache-dependency-path: pyproject.toml
# - name: Install dependencies
# run: |
# make gmsh-ubuntu
# uv pip install -e .[tests]
# - name: Test with pytest
# run: pytest
# # test_code_coverage:
# # runs-on: ubuntu-latest
# # needs: [pre-commit]
# # steps:
# # - uses: actions/checkout@v4
# # - name: Set up Python
# # uses: actions/setup-python@v5
# # with:
# # python-version: '3.10'
# # - name: Install dependencies
# # run: |
# # pip install -e .[tests]
# # - name: Test with pytest
# # run: |
# # pytest --cov={{ cookiecutter.package_name }} {{ cookiecutter.package_name }}
# # - name: Upload coverage to Codecov
# # uses: codecov/codecov-action@v3
# # with:
# # token: ${{ secrets.CODECOV_TOKEN }}
# # fail_ci_if_error: false
# test_docs:
# needs: [pre-commit]
# runs-on: ${{ matrix.os }}
# strategy:
# max-parallel: 12
# matrix:
# python-version: ['3.10']
# os: [ubuntu-latest]

# steps:
# - uses: actions/checkout@v4
# - uses: conda-incubator/setup-miniconda@v3
# with:
# python-version: '3.10'
# mamba-version: "*"
# channels: conda-forge,defaults
# channel-priority: true
# activate-environment: anaconda-client-env
# - name: Add conda to system path
# run: |
# echo $CONDA/bin >> $GITHUB_PATH
# - name: Install dependencies
# run: |
# make dev
# - name: Test documentation
# run: |
# make docs

0 comments on commit 50b198d

Please sign in to comment.