Skip to content

Commit f14a343

Browse files
authored
Merge branch 'devel' into yellow_submarine
2 parents 2c784b2 + e80d990 commit f14a343

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.travis.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,25 @@ sudo: required
44
dist: trusty
55
matrix:
66
include:
7-
- os: linux
8-
python: "3.4"
97
- os: linux
108
python: "3.5"
119
- os: linux
1210
python: "3.6"
1311
- os: linux
1412
python: "3.6-dev"
1513
- os: linux
16-
python: "nightly"
14+
python: "3.7-dev"
1715
- os: linux
18-
python: "pypy3"
16+
python: "nightly"
1917

2018
- os: osx
2119
sudo: required
2220
language: generic
2321

2422
allow_failures:
2523
- python: "3.6-dev"
24+
- python: "3.7-dev"
2625
- python: "nightly"
27-
- python: "pypy3"
2826
- os: "osx"
2927
addons:
3028
apt:

git_repo/services/ext/gitlab.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def connect(self):
4444
def create(self, user, repo, add=False):
4545
try:
4646
group = self.gl.groups.search(user)
47-
data = {'name': repo}
47+
data = {'name': repo, 'path': repo}
4848
if group:
4949
data['namespace_id'] = group[0].id
5050
self.gl.projects.create(data=data)

0 commit comments

Comments
 (0)