Skip to content

Update pytest-cov requirement from ^4.1.0 to ^5.0.0 #9

Update pytest-cov requirement from ^4.1.0 to ^5.0.0

Update pytest-cov requirement from ^4.1.0 to ^5.0.0 #9

name: conda-deployment
on: [push]
jobs:
Main-package:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11", "3.12"]
env:
OS: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
mamba-version: "*"
#use-mamba: true
auto-update-conda: false
#environment-file: environment.yml
auto-activate-base: false
activate-environment: test
python-version: ${{ matrix.python-version }}
channels: conda-forge,defaults
channel-priority: true
show-channel-urls: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Poetry
run: |
echo "Installing Poetry..."
conda run --name test pip install poetry
- name: Set up Google Cloud credentials
env:
GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }}
run: |
echo "$GCP_SA_KEY" > gcp-key.json
echo "GOOGLE_APPLICATION_CREDENTIALS=${{ github.workspace }}/gcp-key.json" >> $GITHUB_ENV
- name: Install dependencies with Poetry
run: |
echo "Installing dependencies..."
conda run --name test poetry install
- name: Generate coverage report
shell: bash -el {0}
run: |
conda info
conda list
conda config --show-sources
conda config --show
conda run --name test poetry run pytest -sv