##// END OF EJS Templates
Also run test with Pytest....
Also run test with Pytest. This now run many of the tests using pytest. Many of previous pull-requests brought pytest compatibility; this now actually would run a passing test suite. This does not mean we can drop nose; in particular we still have plugins fro doctests using iptest; which pytest does not run; and we are still limited to pytest 3 (pytest 4 does not support yield-test anymore) There is thus still much work to do.

File last commit:

r5731:a1ccd554
r25117:ea4ab3aa
Show More
testupload
22 lines | 618 B | text/plain | TextLexer
Fernando Perez
Update utilities to be all Python, use numbered paths in testing uploads.
r4452 #!/usr/bin/env python
"""Simple upload script to push up into the testing directory a local build
"""
from __future__ import print_function
Fernando Perez
Update utility scripts for bzr workflow
r1542
Fernando Perez
Update utilities to be all Python, use numbered paths in testing uploads.
r4452 from toollib import *
# Get main ipython dir, this will raise if it doesn't pass some checks
ipdir = get_ipdir()
distdir = pjoin(ipdir, 'dist')
# Load release info
execfile(pjoin(ipdir, 'IPython','core','release.py'))
# Build site addresses for file uploads
testing_site = '%s/testing/%s' % (archive, version)
cd(distdir)
Fernando Perez
Minor updates to release tools
r4454
Fernando Perez
Fix upload tool to automatically create directories.
r5731 # Create remote path if it doesn't exist.
sh('ssh %s "mkdir -p %s/testing/%s" ' % (archive_user, archive_dir, version))
Fernando Perez
Update utilities to be all Python, use numbered paths in testing uploads.
r4452 sh('scp * %s' % testing_site)