Skip to content

Commit

Permalink
Disabled main.yml for further testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
3benknight authored Jul 25, 2024
1 parent b14c9d7 commit b0401b8
Showing 1 changed file with 44 additions and 44 deletions.
88 changes: 44 additions & 44 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
name: "Xanthos Tests"

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10, 3.11]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Upgrade pip
run: python -m pip install --upgrade pip

- name: Install Xanthos
run: pip install git+https://github.com/JGCRI/xanthos@dev-testing

- name: Install test dependencies
run: pip install pytest pytest-cov

- name: Run tests
run: pytest --cov=xanthos --cov-report=xml

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
fail_ci_if_error: true
# name: "Xanthos Tests"

# on:
# push:
# branches:
# - '**'
# pull_request:
# branches:
# - '**'

# jobs:
# tests:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: [3.7, 3.8, 3.9, 3.10, 3.11]

# steps:
# - name: Checkout repository
# uses: actions/checkout@v4

# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}

# - name: Upgrade pip
# run: python -m pip install --upgrade pip

# - name: Install Xanthos
# run: pip install git+https://github.com/JGCRI/xanthos@dev-testing

# - name: Install test dependencies
# run: pip install pytest pytest-cov

# - name: Run tests
# run: pytest --cov=xanthos --cov-report=xml

# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v3
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# file: ./coverage.xml
# fail_ci_if_error: true

0 comments on commit b0401b8

Please sign in to comment.