File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
language : python
2
2
python :
3
- - " 3.6" # oldest rdflib supported by libgit2
4
- - " 3.7" # debian buster (stable) as of 2019-12
3
+ # - "3.6" # oldest rdflib supported by libgit2
4
+ # - "3.7" # debian buster (stable) as of 2019-12
5
5
- " 3.8-dev" # 3.8 development branch
6
6
- " nightly"
7
7
@@ -45,6 +45,7 @@ script:
45
45
- coverage run -a --source=quit tests/test_helpers.py
46
46
- coverage run -a --source=quit tests/test_namespace.py
47
47
- coverage run -a --source=quit tests/test_provenance.py
48
+ - coverage run -a --source=quit tests/merges/test_merge_methods.py
48
49
49
50
before_deploy :
50
51
- mkdir dist
Original file line number Diff line number Diff line change @@ -26,15 +26,15 @@ def testThreeWayMerge(self):
26
26
testPath = os .path .dirname (os .path .abspath (__file__ ))
27
27
for d in listdir (testPath ):
28
28
if d [0 :4 ] == "Test" and isdir (join (testPath , d )):
29
- self ._merge_test (d , "three-way" )
29
+ self ._merge_test (join ( testPath , d ) , "three-way" )
30
30
31
31
def testContextMerge (self ):
32
32
"""Test merging two commits. Method: Context"""
33
33
testPath = os .path .dirname (os .path .abspath (__file__ ))
34
34
exceptions = ["TestHouseMerge" ] # TestHouse actually raises a merge conflict exception
35
35
for d in listdir (testPath ):
36
36
if d [0 :4 ] == "Test" and isdir (join (testPath , d )) and d not in exceptions :
37
- self ._merge_test (d , "context" )
37
+ self ._merge_test (join ( testPath , d ) , "context" )
38
38
39
39
def _merge_test (self , dirPath , method ):
40
40
# Prepate a git Repository
You can’t perform that action at this time.
0 commit comments