Skip to content

Conversation

IanEisenberg
Copy link
Member

No description provided.

@vsoch
Copy link
Member

vsoch commented Mar 4, 2016

Try specifying all input args in the circle.yml file for this one,like:

  $HOME/miniconda2/bin/python -c "from expfactory.tests import circle_ci_test; circle_ci_test(experiment_tags='multiplication',web_folder='web',pause_time=2000);"  

@vsoch
Copy link
Member

vsoch commented Mar 4, 2016

Ah, I shouldn't have copy pasted from the circle.yml that is producing the error :) The bug is that you forgot to specify the local experiment folder, which is the PWD, which is indicated by the '.':

Instead of this:

   $HOME/miniconda2/bin/python -c "from expfactory.tests import circle_ci_test; circle_ci_test('multiplication','web',pause_time=2000);"  

You need this:

   $HOME/miniconda2/bin/python -c "from expfactory.tests import circle_ci_test; circle_ci_test('multiplication','web','.',pause_time=2000);"  

Compare the multiplication line to the other experiments, you will see the bug.

@IanEisenberg
Copy link
Member Author

Got it. Wasn't sure whether I was supposed to replace that line or not.

On Friday, March 4, 2016, Vanessa Sochat [email protected] wrote:

Ah, I shouldn't have copy pasted from the circle.yml that is producing the
error :) The bug is that you forgot to specify the local experiment folder,
which is the PWD, which is indicated by the '.':

Instead of this:

$HOME/miniconda2/bin/python -c "from expfactory.tests import circle_ci_test; circle_ci_test('multiplication','web',pause_time=2000);"

You need this:

$HOME/miniconda2/bin/python -c "from expfactory.tests import circle_ci_test; circle_ci_test('multiplication','web','.',pause_time=2000);"

Compare the multiplication line to the other experiments, you will see the
bug.


Reply to this email directly or view it on GitHub
#350 (comment)
.

Best,
Ian

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants