Skip to content

Commit

Permalink
Split build and test in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
nicedlp committed Sep 6, 2023
1 parent bf243a2 commit 7d7877d
Showing 1 changed file with 30 additions and 8 deletions.
38 changes: 30 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,13 @@ jobs:
pip install -r requirements.txt
- name: Install dev dependencies
run: pip install -r requirements_test.txt
- name: Run Linter
run: flake8 formation_indus_ds_avancee
- name: Run Vulture
run: vulture formation_indus_ds_avancee scripts --min-confidence 100
- name: Run tests
run: python -m pytest tests/test_unit
- name: Behave
run: behave tests/test_functional/features




jobs:
qualite:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -45,7 +40,34 @@ jobs:
pip install -r requirements.txt
- name: Install dev dependencies
run: pip install -r requirements_test.txt
- name: Run Linter
run: flake8 formation_indus_ds_avancee
- name: Run Vulture
run: vulture formation_indus_ds_avancee scripts --min-confidence 100
- 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


jobs:
tests:
needs: 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: Run tests
run: python -m pytest tests/test_unit
- name: Behave
run: behave tests/test_functional/features

0 comments on commit 7d7877d

Please sign in to comment.