Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 6659165

Browse files
committed
CI/CD: Fixed bad split on flask and python version
1 parent 4eec27a commit 6659165

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@ jobs:
3030
run: |
3131
python -m pip install --upgrade pip
3232
pip install tox
33-
tox -e py${{ matrix.python-version | replace('.', '') }}-flask${{ matrix.flask-version | replace('.', '') }}
3433
3534
- name: Run tests
3635
run: |
37-
tox -e py${{ matrix.python-version | replace('.', '') }}-flask${{ matrix.flask-version | replace('.', '') }}
36+
PYTHON_VERSION=${{ matrix.python-version }}
37+
FLASK_VERSION=${{ matrix.flask-version }}
38+
TOX_ENV="py${PYTHON_VERSION//./}-flask${FLASK_VERSION//./}"
39+
tox -e $TOX_ENV

0 commit comments

Comments
 (0)