Skip to content

Commit

Permalink
added import error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Formartha committed Apr 9, 2024
1 parent ae58e77 commit b52adfa
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pytest_node_dependency/plugin.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import os
import platform

import networkx as nx
import pytest

from xdist.scheduler.loadscope import LoadScopeScheduling

try:
from xdist.scheduler.loadscope import LoadScopeScheduling
except ImportError:
pass

NODE_DEPENDENCY_ITEMS_CACHE = 'node-dependency-items'

Expand Down

0 comments on commit b52adfa

Please sign in to comment.