From 7d7877de12817dde0450ff30d29dda814160427d Mon Sep 17 00:00:00 2001 From: nicedlp Date: Wed, 6 Sep 2023 12:29:39 +0000 Subject: [PATCH] Split build and test in ci --- .github/workflows/ci.yml | 38 ++++++++++++++++++++++++++++++-------- 1 file changed, 30 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e7c4ad..f163dd7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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 \ No newline at end of file