Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated multiplication experiment #350

Open
wants to merge 6 commits into
base: master
Choose a base branch
from

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