Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
144cd7bb
Commit
144cd7bb
authored
Jan 02, 2015
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Leverage fixtures for sample project and user_overrides.
parent
ddbaa77c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
35 deletions
+18
-35
setuptools/tests/test_upload_docs.py
setuptools/tests/test_upload_docs.py
+18
-35
No files found.
setuptools/tests/test_upload_docs.py
View file @
144cd7bb
import
sys
import
os
import
shutil
import
tempfile
import
site
import
zipfile
import
pytest
from
setuptools.command.upload_docs
import
upload_docs
from
setuptools.dist
import
Distribution
...
...
@@ -19,41 +19,25 @@ SETUP_PY = DALS(
"""
)
class
TestUploadDocsTest
:
def
setup_method
(
self
,
method
):
self
.
dir
=
tempfile
.
mkdtemp
()
setup
=
os
.
path
.
join
(
self
.
dir
,
'setup.py'
)
f
=
open
(
setup
,
'w'
)
@
pytest
.
fixture
def
sample_project
(
tmpdir_cwd
):
# setup.py
with
open
(
'setup.py'
,
'wt'
)
as
f
:
f
.
write
(
SETUP_PY
)
f
.
close
()
self
.
old_cwd
=
os
.
getcwd
()
os
.
chdir
(
self
.
dir
)
self
.
upload_dir
=
os
.
path
.
join
(
self
.
dir
,
'build'
)
os
.
mkdir
(
self
.
upload_dir
)
os
.
mkdir
(
'build'
)
# A test document.
f
=
open
(
os
.
path
.
join
(
self
.
upload_dir
,
'index.html'
),
'w'
)
# A test document.
with
open
(
'build/index.html'
,
'w'
)
as
f
:
f
.
write
(
"Hello world."
)
f
.
close
()
# An empty folder.
os
.
mkdir
(
os
.
path
.
join
(
self
.
upload_dir
,
'empty'
))
if
sys
.
version
>=
"2.6"
:
self
.
old_base
=
site
.
USER_BASE
site
.
USER_BASE
=
upload_docs
.
USER_BASE
=
tempfile
.
mkdtemp
()
self
.
old_site
=
site
.
USER_SITE
site
.
USER_SITE
=
upload_docs
.
USER_SITE
=
tempfile
.
mkdtemp
()
def
teardown_method
(
self
,
method
):
os
.
chdir
(
self
.
old_cwd
)
shutil
.
rmtree
(
self
.
dir
)
if
sys
.
version
>=
"2.6"
:
shutil
.
rmtree
(
site
.
USER_BASE
)
shutil
.
rmtree
(
site
.
USER_SITE
)
site
.
USER_BASE
=
self
.
old_base
site
.
USER_SITE
=
self
.
old_site
# An empty folder.
os
.
mkdir
(
'build/empty'
)
@
pytest
.
mark
.
usefixtures
(
'sample_project'
)
@
pytest
.
mark
.
usefixtures
(
'user_override'
)
class
TestUploadDocsTest
:
def
test_create_zipfile
(
self
):
# Test to make sure zipfile creation handles common cases.
...
...
@@ -62,8 +46,7 @@ class TestUploadDocsTest:
dist
=
Distribution
()
cmd
=
upload_docs
(
dist
)
cmd
.
upload_dir
=
self
.
upload_dir
cmd
.
target_dir
=
self
.
upload_dir
cmd
.
target_dir
=
cmd
.
upload_dir
=
'build'
tmp_dir
=
tempfile
.
mkdtemp
()
tmp_file
=
os
.
path
.
join
(
tmp_dir
,
'foo.zip'
)
try
:
...
...
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