Barry Warsaw pushed to branch click-cli at mailman / Mailman

Commits:
215275f0 by Barry Warsaw at 2017-07-09T15:45:21-04:00
We have to drop Python 3.4.

- - - - -
5038ab5d by Barry Warsaw at 2017-07-09T15:47:23-04:00
Debugging.

- - - - -


4 changed files:

- .gitlab-ci.yml
- src/mailman/docs/contribute.rst
- src/mailman/testing/helpers.py
- tox.ini


Changes:

=====================================
.gitlab-ci.yml
=====================================
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -22,13 +22,13 @@ docs:
 
 sqlite:
   script:
-  - tox -e py34-nocov,py35-nocov,py36-nocov
+  - tox -e py35-nocov,py36-nocov
 
 pgsql:
   services:
   - postgres:latest
   script:
-  - MAILMAN_EXTRA_TESTING_CFG=/home/runner/configs/postgres.cfg tox -e 
py34-nocov-pg,py35-nocov-pg,py36-nocov-pg
+  - MAILMAN_EXTRA_TESTING_CFG=/home/runner/configs/postgres.cfg tox -e 
py35-nocov-pg,py36-nocov-pg
   tags:
   - postgres
 
@@ -36,12 +36,12 @@ mysql:
   services:
   - mysql:latest
   script:
-  - MAILMAN_EXTRA_TESTING_CFG=/home/runner/configs/mysql.cfg tox -e 
py34-nocov-mysql,py35-nocov-mysql,py36-nocov-mysql
+  - MAILMAN_EXTRA_TESTING_CFG=/home/runner/configs/mysql.cfg tox -e 
py35-nocov-mysql,py36-nocov-mysql
   tags:
   - mysql
 
 diffcov:
   script:
-  - tox -e py34-diffcov,py35-diffcov,py36-diffcov
+  - tox -e py35-diffcov,py36-diffcov
   except:
   - master


=====================================
src/mailman/docs/contribute.rst
=====================================
--- a/src/mailman/docs/contribute.rst
+++ b/src/mailman/docs/contribute.rst
@@ -62,7 +62,6 @@ of these command, depending on which version of Python 3 you 
have::
 
     $ tox -e py36-nocov
     $ tox -e py35-nocov
-    $ tox -e py34-nocov
 
 You can run individual tests in any given environment by providing additional
 positional arguments.  For example, to run only the tests that match a


=====================================
src/mailman/testing/helpers.py
=====================================
--- a/src/mailman/testing/helpers.py
+++ b/src/mailman/testing/helpers.py
@@ -562,6 +562,7 @@ def hackenv(envar, new_value):
 
 
 def nose2_start_test_run_callback(plugin):
+    print('********** LOCALE ENV **********', file=sys.stderr)
     for name in sorted(os.environ):
         if name.startswith('LC_') or name.startswith('LANG'):
             print('{}: {}'.format(name, os.environ[name]), file=sys.stderr)


=====================================
tox.ini
=====================================
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = {py34,py35,py36}-{nocov,cov,diffcov}{,-mysql,-pg},qa
+envlist = {py35,py36}-{nocov,cov,diffcov}{,-mysql,-pg},qa
 #recreate = True
 skip_missing_interpreters = True
 



View it on GitLab: 
https://gitlab.com/mailman/mailman/compare/f3c9b2b22b93dec7e1699e1c075162e974b3c04b...5038ab5d232a2069dcfa00ab286deb1d7423f42c

---
View it on GitLab: 
https://gitlab.com/mailman/mailman/compare/f3c9b2b22b93dec7e1699e1c075162e974b3c04b...5038ab5d232a2069dcfa00ab286deb1d7423f42c
You're receiving this email because of your account on gitlab.com.
_______________________________________________
Mailman-checkins mailing list
Mailman-checkins@python.org
Unsubscribe: 
https://mail.python.org/mailman/options/mailman-checkins/archive%40jab.org

Reply via email to