[issue34381] Make tests with outbound connection optional

2018-08-18 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: -Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34381] Make tests with outbound connection optional

2018-08-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: Closing this does not preclude the optional addition and merge of a PR for 2.7. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue34381] Make tests with outbound connection optional

2018-08-17 Thread miss-islington
miss-islington added the comment: New changeset eeece3cd331a1f57fabd55e026f2ea26bc4c by Miss Islington (bot) in branch '3.7': bpo-34381: refer to 'Running & Writing Tests' in README.rst (GH-8797) https://github.com/python/cpython/commit/eeece3cd331a1f57fabd55e026f2ea26bc4c

[issue34381] Make tests with outbound connection optional

2018-08-17 Thread miss-islington
miss-islington added the comment: New changeset 4d4d23d8317fbc95eec789f349dd1db4c0b24fc3 by Miss Islington (bot) in branch '3.6': bpo-34381: refer to 'Running & Writing Tests' in README.rst (GH-8797) https://github.com/python/cpython/commit/4d4d23d8317fbc95eec789f349dd1db4c0b24fc3

[issue34381] Make tests with outbound connection optional

2018-08-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +8276 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34381] Make tests with outbound connection optional

2018-08-17 Thread miss-islington
Change by miss-islington : -- pull_requests: +8275 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34381] Make tests with outbound connection optional

2018-08-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset cae8ff93a696aa7d74562a9eeaf27afac1f181b4 by Terry Jan Reedy (Michael Osipov) in branch 'master': bpo-34381: refer to 'Running & Writing Tests' in README.rst (GH-8797)

[issue34381] Make tests with outbound connection optional

2018-08-17 Thread Terry J. Reedy
Change by Terry J. Reedy : -- assignee: -> terry.reedy components: +Documentation versions: +Python 2.7, Python 3.6, Python 3.8 ___ Python tracker ___

[issue34381] Make tests with outbound connection optional

2018-08-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: An additional motivation for the change is that the instructions in the Testing section of the README are make based while the devguide section gives the OS- and version-specific 'python' based commands. -- nosy: +terry.reedy

[issue34381] Make tests with outbound connection optional

2018-08-17 Thread Michael Osipov
Change by Michael Osipov <1983-01...@gmx.net>: -- keywords: +patch pull_requests: +8273 stage: -> patch review ___ Python tracker ___

[issue34381] Make tests with outbound connection optional

2018-08-15 Thread Michael Osipov
Michael Osipov <1983-01...@gmx.net> added the comment: That looks promising, I figured out that there is "./python -m test -h". make test TESTOPTS="-uall,-network" works flawlessly. I would have expected a link to https://devguide.python.org/runtests/ from

[issue34381] Make tests with outbound connection optional

2018-08-14 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: You can run all the tests except the ones that require external network (like SSL for sockets) using: ./python -m test -uall,-network or you can exclude tests using the -x flag. -- ___ Python tracker

[issue34381] Make tests with outbound connection optional

2018-08-14 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- Removed message: https://bugs.python.org/msg323536 ___ Python tracker ___ ___ Python-bugs-list

[issue34381] Make tests with outbound connection optional

2018-08-14 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: You can run all the tests except the ones that require external network (like SSL for sockets) using: ./python -m test -uall,network or you can exclude tests using the -x flag. -- nosy: +pablogsal ___

[issue34381] Make tests with outbound connection optional

2018-08-11 Thread Michael Osipov
New submission from Michael Osipov <1983-01...@gmx.net>: I am currently trying investigate tests failures on HP-UX to port some engineering applications away from Fortran to Python, but a bunch of tests require outbound connection which I do not have. I do have an HTTP proxy only. Please add