Skip to content

Commit

Permalink
feat(akande): ✨ commented out pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienrousseau committed Feb 10, 2024
1 parent e588ab9 commit 2117485
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@ jobs:
echo "::set-output name=version::$(python -c 'import configparser; cfg = configparser.ConfigParser(); cfg.read("setup.cfg"); print(cfg.get("metadata", "version"))')"
# This job runs unit tests using pytest
pytest:
needs: version
runs-on: ubuntu-latest
steps:
# Check out the repository code
- uses: actions/checkout@v4

# Set up Python and install dependencies
- name: ❯ Set up Python and install dependencies 🐍📦
uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: ❯ Install dependencies 📦
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
# pytest:
# needs: version
# runs-on: ubuntu-latest
# steps:
# # Check out the repository code
# - uses: actions/checkout@v4

# # Set up Python and install dependencies
# - name: ❯ Set up Python and install dependencies 🐍📦
# uses: actions/setup-python@v2
# with:
# python-version: "3.9"
# - name: ❯ Install dependencies 📦
# run: |
# python -m pip install --upgrade pip
# python -m pip install -r requirements.txt
# python -m pip install pytest pytest-cov

# Run pytest
Expand Down

0 comments on commit 2117485

Please sign in to comment.