Skip to content

Commit

Permalink
Fix CI (#10)
Browse files Browse the repository at this point in the history
* Remove mypy tests

* Fix lint

* Fix black

* Fix workflow
  • Loading branch information
ElePT authored Nov 27, 2023
1 parent eddb50b commit 6e70642
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,6 @@ jobs:
- uses: ./.github/actions/install-qopt
- run: make lint
shell: bash
- run: make mypy
shell: bash
- name: qopt Unit Tests under Python ${{ matrix.python-version }}
uses: ./.github/actions/run-tests
with:
Expand All @@ -116,8 +114,9 @@ jobs:
if: ${{ !cancelled() }}
- name: Coverage combine
run: |
mkdir ./ci-artifact-data
coverage3 combine
mv .coverage ./ci-artifact-data/alg.dat
mv .coverage ./ci-artifact-data/qopt.dat
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == 3.8 }}
shell: bash
- uses: actions/upload-artifact@v3
Expand Down
1 change: 1 addition & 0 deletions qopt_best_practices/utils/graph_utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Graph utils"""

from __future__ import annotations
import networkx as nx


Expand Down

0 comments on commit 6e70642

Please sign in to comment.