From de6fcdbd8a562c006f6ee16812a338e823aeb88d Mon Sep 17 00:00:00 2001 From: Dmitry Trofimov Date: Mon, 25 Apr 2016 00:18:56 +0200 Subject: [PATCH] Fix env var name --- python/setup-test-environment/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup-test-environment/build.gradle b/python/setup-test-environment/build.gradle index c4e4a9639afc..c32115b7c154 100644 --- a/python/setup-test-environment/build.gradle +++ b/python/setup-test-environment/build.gradle @@ -7,7 +7,7 @@ plugins { envs { bootstrapDirectory = new File(System.getenv().getOrDefault("PYCHARM_PYTHONS", new File(buildDir, 'pythons').path)) - envsDirectory = new File(System.getenv().getOrDefault("PYCHARM_PYTHON_ENVS", new File(buildDir, 'envs').path)) + envsDirectory = new File(System.getenv().getOrDefault("PYCHARM_PYTHON_VIRTUAL_ENVS", new File(buildDir, 'envs').path)) minicondaVersion = 'latest' packages = ["pip", "setuptools"] _64Bits = true