Skip to content

get more detail why test fail #4

get more detail why test fail

get more detail why test fail #4

Workflow file for this run

name: tests
on:
pull_request_target:
branches:
- main
types: [closed]
push:
branches:
- main
permissions:
contents: write
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install .
pip install pytest pytest-cov
- name: test
run: |
pytest -s --cov=guix_env tests