Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
852ec33d
Unverified
Commit
852ec33d
authored
Apr 30, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix tests
parent
5433e5b7
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
6 deletions
+22
-6
.gitignore
+1
-1
poetry/puzzle/provider.py
+0
-3
tests/console/conftest.py
+0
-2
tests/fixtures/git/github.com/demo/demo/setup.py
+21
-0
No files found.
.gitignore
View file @
852ec33d
...
...
@@ -26,6 +26,6 @@ pip-log.txt
setup.cfg
MANIFEST.in
setup.py
/
setup.py
/docs/site/*
pyproject.lock
poetry/puzzle/provider.py
View file @
852ec33d
...
...
@@ -173,10 +173,7 @@ class Provider(SpecificationProvider, UI):
# We need to place ourselves in the proper
# folder for it to work
current_dir
=
os
.
getcwd
()
print
(
current_dir
)
os
.
chdir
(
tmp_dir
.
as_posix
())
print
(
os
.
getcwd
())
print
(
list
(
Path
(
os
.
getcwd
())
.
glob
(
'*'
)))
try
:
venv
=
Venv
.
create
(
self
.
_io
)
...
...
tests/console/conftest.py
View file @
852ec33d
...
...
@@ -32,8 +32,6 @@ def mock_clone(self, source, dest):
/
'fixtures'
/
'git'
/
parts
.
netloc
/
parts
.
path
.
lstrip
(
'/'
)
.
rstrip
(
'.git'
)
)
print
(
folder
)
print
(
list
(
folder
.
glob
(
'*'
)))
shutil
.
rmtree
(
str
(
dest
))
shutil
.
copytree
(
str
(
folder
),
str
(
dest
))
...
...
tests/fixtures/git/github.com/demo/demo/setup.py
0 → 100644
View file @
852ec33d
from
setuptools
import
setup
kwargs
=
dict
(
name
=
'demo'
,
license
=
'MIT'
,
version
=
'0.1.2'
,
description
=
'Demo project.'
,
author
=
'Sébastien Eustace'
,
author_email
=
'sebastien@eustace.io'
,
url
=
'https://github.com/demo/demo'
,
packages
=
[
'demo'
,
],
install_requires
=
[
'pendulum>=1.4.4'
],
)
setup
(
**
kwargs
)
Write
Preview
Markdown
is supported
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