Skip to content

Commit

Permalink
💩
Browse files Browse the repository at this point in the history
  • Loading branch information
EhsanBitaraf committed Oct 17, 2023
1 parent 03374fc commit 0c4f7c7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11.3
python-version: '3.11'

- name: Install Poetry
uses: snok/install-poetry@v1
Expand Down
4 changes: 2 additions & 2 deletions tests/fixtures/graph_52.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
def graph52():
# set up code goes here
try:
path_graph = os.path.join(ROOT, "tests" , "fixtures","g52.graphml")
path_graph = os.path.join(ROOT.parent, "tests" , "fixtures","g52.graphml")
G = nx.read_graphml(path_graph)
# G = nx.read_graphml('tests\\fixtures\\g52.graphml')
except FileNotFoundError:
Expand All @@ -31,7 +31,7 @@ def graph52():
def graph52_instance():
# set up code goes here
try:
path_graph = os.path.join(ROOT, "tests" , "fixtures","g52.graphml")
path_graph = os.path.join(ROOT.parent, "tests" , "fixtures","g52.graphml")
G = nx.read_graphml(path_graph)
# G = nx.read_graphml('tests\\fixtures\\g52.graphml')
except FileNotFoundError:
Expand Down

0 comments on commit 0c4f7c7

Please sign in to comment.