Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
fix a failing unit test due to a pyquickhelper change
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed May 16, 2015
1 parent 1582e1d commit 127060b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _unittests/ut_module/test_write_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_write_script(self):
content = f.read()
if "__" in content:
for line in content.split("\n"):
if "__" in line and "sys.path.append" not in line:
if "__" in line and "sys.path.append" not in line and "__file__" not in line:
raise Exception(content)
if ".xml" in c:
if '<outline text="' not in content:
Expand Down
8 changes: 4 additions & 4 deletions src/ensae_teaching_cs/automation/jenkins_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ def setup_jenkins_server(js,
# teachings
("ensae_teaching_cs",
"H H(15-16) * * 0"),
["ensae_teaching_cs [winpython]",
"ensae_teaching_cs [anaconda]",
"ensae_teaching_cs [SKIP]",
"ensae_teaching_cs [LONG]", ],
"ensae_teaching_cs [winpython]",
"ensae_teaching_cs [anaconda]",
"ensae_teaching_cs [SKIP]",
"ensae_teaching_cs [LONG]",
"ensae_teaching_cs [custom_left]",
"ensae_teaching_cs [winpython] [custom_left]",
"ensae_teaching_cs [anaconda] [custom_left]",
Expand Down

0 comments on commit 127060b

Please sign in to comment.