Private GIT
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SickRage-1
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
vlbox
SickRage-1
Commits
901d1114
Commit
901d1114
authored
Nov 25, 2015
by
Gaëtan Muller
Browse files
Options
Downloads
Plain Diff
Merge pull request #198 from alisonatwork/ali/fix-all_tests-on-windows
fix all_tests directory separator for windows
parents
1794e2f9
57120263
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/all_tests.py
+1
-1
1 addition, 1 deletion
tests/all_tests.py
with
1 addition
and
1 deletion
tests/all_tests.py
+
1
−
1
View file @
901d1114
...
@@ -54,7 +54,7 @@ class AllTests(unittest.TestCase):
...
@@ -54,7 +54,7 @@ class AllTests(unittest.TestCase):
def
_get_module_strings
(
self
):
def
_get_module_strings
(
self
):
modules
=
[]
modules
=
[]
for
file_string
in
self
.
test_file_strings
:
for
file_string
in
self
.
test_file_strings
:
modules
.
append
(
file_string
[
len
(
tests_dir
):
len
(
file_string
)
-
3
].
replace
(
'
/
'
,
'
.
'
))
modules
.
append
(
file_string
[
len
(
tests_dir
):
len
(
file_string
)
-
3
].
replace
(
os
.
sep
,
'
.
'
))
return
modules
return
modules
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment