[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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


--
nosy: +miss-islington

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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)
https://github.com/python/cpython/commit/cae8ff93a696aa7d74562a9eeaf27afac1f181b4


--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 
https://github.com/python/cpython/blob/master/README.rst#testing.

So my request is just to update the rst file.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 something to TESTOPTS, e.g., '-o' (offline) to skip test. I'd like 
to focus on the real test failures.

--
components: Tests
messages: 323413
nosy: michael-o
priority: normal
severity: normal
status: open
title: Make tests with outbound connection optional
type: enhancement
versions: Python 3.7

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com