From 729c93f0de0348d556c6e8bf52189addc03ea251 Mon Sep 17 00:00:00 2001 From: J-E Castagnede Date: Tue, 25 Jun 2024 11:39:16 +0200 Subject: [PATCH] fix tests --- .github/release.yml | 22 ++++++++++++++++++++++ .github/workflows/quality.yml | 12 ------------ .github/workflows/test.yml | 1 + 3 files changed, 23 insertions(+), 12 deletions(-) create mode 100644 .github/release.yml diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..c3cef6b --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,22 @@ +changelog: + categories: + - title: ๐ŸŽ‰ Features + labels: + - '*' + exclude: + labels: + - dependencies + - Bug + - documentation + + - title: ๐Ÿ›  Bug fixes + labels: + - 'Bug' + + - title: ๐Ÿ“˜ Documentation + labels: + - documentation + + - title: โคด Dependencies + labels: + - dependencies diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 01cd3e9..4862cdc 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -24,10 +24,6 @@ jobs: - uses: actions/setup-python@v5 with: python-version-file: ./backend/.python-version - cache: 'pip' - cache-dependency-path: | - ./backend/requirements.txt - ./backend/dev-requirements.txt - name: Install flake8 working-directory: ./backend @@ -47,10 +43,6 @@ jobs: - uses: actions/setup-python@v5 with: python-version-file: ./backend/.python-version - cache: 'pip' - cache-dependency-path: | - ./backend/requirements.txt - ./backend/dev-requirements.txt - name: Install isort working-directory: ./backend @@ -70,10 +62,6 @@ jobs: - uses: actions/setup-python@v5 with: python-version-file: ./backend/.python-version - cache: 'pip' - cache-dependency-path: | - ./backend/requirements.txt - ./backend/dev-requirements.txt - name: Install black working-directory: ./backend diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f3dae99..489bdb9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,6 +31,7 @@ jobs: cache-dependency-path: | ./backend/requirements.txt ./backend/dev-requirements.txt + - name: Install dependencies working-directory: ./backend run: |