Skip to content

Commit ef8d786

Browse files
authored
Merge pull request #590 from boriel/bugfix/fix_arch_backend_initialization
Bugfix/fix arch backend initialization
2 parents e9d6637 + 7fd639d commit ef8d786

5 files changed

Lines changed: 420 additions & 370 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python 3.8
2020
uses: actions/setup-python@v2
2121
with:
22-
python-version: 3.8
22+
python-version: 3.8.7
2323
- name: Caches pip
2424
uses: actions/cache@v1
2525
with:
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install dependencies
3131
run: |
3232
python -m pip install --upgrade pip
33-
pip install poetry tox
33+
pip install poetry
3434
poetry install
3535
- name: Cache tox environments
3636
id: cache-tox
@@ -42,6 +42,5 @@ jobs:
4242
# only takes a single file path or pattern at the moment.
4343
key: ${{ runner.os }}-${{ matrix.python }}-tox-${{ hashFiles('setup.cfg') }}-${{ hashFiles('pyproject.toml') }}
4444

45-
4645
- name: Run Tox
47-
run: tox -- --no-cov
46+
run: poetry run tox -- --no-cov

0 commit comments

Comments
 (0)