Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
finesse
pykat
Commits
4e420927
Commit
4e420927
authored
Aug 05, 2013
by
Daniel Brown
Browse files
fixing startup path issue
parent
e61ab8c7
Changes
1
Hide whitespace changes
Inline
Side-by-side
pykat/testing/web_server.py
View file @
4e420927
...
...
@@ -34,14 +34,14 @@ os.chdir(instance_path)
utils
.
git
([
"clone"
,
"git://gitmaster.atlas.aei.uni-hannover.de/finesse/src.git"
,
"finesse_src"
])
else
:
# get the latest version for logs etc.
utils
.
git
(
"pull"
,
cwd
=
os
.
path
.
join
(
app
.
instance_path
))
utils
.
git
(
"pull"
,
cwd
=
os
.
path
.
join
(
app
.
instance_path
,
"finesse_src"
))
os
.
chdir
(
instance_path
)
# need local copy of test
if
not
os
.
path
.
exists
(
os
.
path
.
join
(
app
.
instance_path
,
"finesse_test"
)):
print
"finesse test folder didn't exist, cloning now..."
utils
.
git
([
"clone"
,
"git://gitmaster.atlas.aei.uni-hannover.de/finesse/test.git"
,
"finesse_test"
]
,
cwd
=
os
.
path
.
join
(
app
.
instance_path
))
utils
.
git
([
"clone"
,
"git://gitmaster.atlas.aei.uni-hannover.de/finesse/test.git"
,
"finesse_test"
]))
# load up the actual interface code
import
pykat.testing.web.web_interface
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment