Skip to content

Commit

Permalink
Added qualite in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
nicedlp committed Sep 6, 2023
1 parent 080cac2 commit bf243a2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,23 @@ jobs:
run: behave tests/test_functional/features


jobs:
qualite:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install dev dependencies
run: pip install -r requirements_test.txt
- name: coverage
run: python -m pytest --cov=formation_indus_ds_avancee/ tests/test_unit/ -vv -p no:warnings
-name: pyramide des tests
run: ./tests/tests_pyramid.sh

0 comments on commit bf243a2

Please sign in to comment.