Skip to content

Commit

Permalink
address
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek committed Aug 3, 2021
1 parent 67fbe35 commit 6f19df8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

from ....ci import running_on_ci
from ....fs import dir_exists, file_exists, path_join
from ....utils import ON_WINDOWS
from ...e2e import E2E_SUPPORTED_TYPES, derive_interface, start_environment, stop_environment
from ...e2e.agent import DEFAULT_PYTHON_VERSION, DEFAULT_SAMPLING_COLLECTION_INTERVAL
from ...git import get_current_branch
Expand Down Expand Up @@ -243,7 +244,7 @@ def start(ctx, check, env, agent, python, dev, base, env_vars, org_name, profile
environment.remove_config()
abort()

if python < 3:
if ON_WINDOWS and python < 3:
time.sleep(10)

echo_success('success!')
Expand Down

0 comments on commit 6f19df8

Please sign in to comment.