diff options
| author | Michael Merickel <michael@merickel.org> | 2020-01-03 23:14:53 -0600 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2020-01-03 23:14:53 -0600 |
| commit | 828e069de5d0c98e6d54cfdbf20b1a8acd1f6b39 (patch) | |
| tree | be692270de956199b4cfb1eda8a9fc24ceb8374e /tests/test_scripts | |
| parent | 7820b922cc1b87147cc60288dff0bbdfd7b5bc8a (diff) | |
| parent | 148cf5138638ce6b1b92b4e13fe1444df9451e34 (diff) | |
| download | pyramid-828e069de5d0c98e6d54cfdbf20b1a8acd1f6b39.tar.gz pyramid-828e069de5d0c98e6d54cfdbf20b1a8acd1f6b39.tar.bz2 pyramid-828e069de5d0c98e6d54cfdbf20b1a8acd1f6b39.zip | |
Merge branch 'master' into security-docs
Diffstat (limited to 'tests/test_scripts')
| -rw-r--r-- | tests/test_scripts/dummy.py | 1 | ||||
| -rw-r--r-- | tests/test_scripts/test_prequest.py | 1 | ||||
| -rw-r--r-- | tests/test_scripts/test_proutes.py | 1 | ||||
| -rw-r--r-- | tests/test_scripts/test_pserve.py | 2 | ||||
| -rw-r--r-- | tests/test_scripts/test_pshell.py | 1 | ||||
| -rw-r--r-- | tests/test_scripts/test_ptweens.py | 1 | ||||
| -rw-r--r-- | tests/test_scripts/test_pviews.py | 1 |
7 files changed, 7 insertions, 1 deletions
diff --git a/tests/test_scripts/dummy.py b/tests/test_scripts/dummy.py index bb3475d39..4a848e043 100644 --- a/tests/test_scripts/dummy.py +++ b/tests/test_scripts/dummy.py @@ -1,4 +1,5 @@ from zope.interface import implementer + from pyramid.interfaces import IMultiView diff --git a/tests/test_scripts/test_prequest.py b/tests/test_scripts/test_prequest.py index aadde719a..2214f6350 100644 --- a/tests/test_scripts/test_prequest.py +++ b/tests/test_scripts/test_prequest.py @@ -1,5 +1,6 @@ from io import StringIO import unittest + from . import dummy diff --git a/tests/test_scripts/test_proutes.py b/tests/test_scripts/test_proutes.py index b5a083272..6ba02a7d4 100644 --- a/tests/test_scripts/test_proutes.py +++ b/tests/test_scripts/test_proutes.py @@ -1,5 +1,6 @@ import os import unittest + from . import dummy diff --git a/tests/test_scripts/test_pserve.py b/tests/test_scripts/test_pserve.py index f19ba81df..7bf962f9e 100644 --- a/tests/test_scripts/test_pserve.py +++ b/tests/test_scripts/test_pserve.py @@ -1,8 +1,8 @@ from io import StringIO import os import unittest -from . import dummy +from . import dummy here = os.path.abspath(os.path.dirname(__file__)) diff --git a/tests/test_scripts/test_pshell.py b/tests/test_scripts/test_pshell.py index 6beaacda6..10a9cd593 100644 --- a/tests/test_scripts/test_pshell.py +++ b/tests/test_scripts/test_pshell.py @@ -1,5 +1,6 @@ import os import unittest + from . import dummy diff --git a/tests/test_scripts/test_ptweens.py b/tests/test_scripts/test_ptweens.py index ee50887f6..808bc64b6 100644 --- a/tests/test_scripts/test_ptweens.py +++ b/tests/test_scripts/test_ptweens.py @@ -1,4 +1,5 @@ import unittest + from . import dummy diff --git a/tests/test_scripts/test_pviews.py b/tests/test_scripts/test_pviews.py index c8d29113f..b462b6f28 100644 --- a/tests/test_scripts/test_pviews.py +++ b/tests/test_scripts/test_pviews.py @@ -1,4 +1,5 @@ import unittest + from . import dummy |
