Change component name from pgwui_testing to pgwui_develop
authorKarl O. Pinc <kop@karlpinc.com>
Tue, 26 Jan 2021 03:39:04 +0000 (21:39 -0600)
committerKarl O. Pinc <kop@karlpinc.com>
Tue, 26 Jan 2021 03:39:04 +0000 (21:39 -0600)
12 files changed:
setup.py
tests/test_assets.py
tests/test_check_settings.py
tests/test_path.py
tests/test_pgwui_common.py
tests/test_plugin.py
tests/test_routes.py
tests/test_urls.py
tests/test_view.py
tests/views/test_ex_views.py
tests/views/test_page_views.py
tox.ini

index ae9732df901998d475ed89493021a3bdcb4df78d..089b032bb3ba67d0b602b1e075ef041815f328c9 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -59,7 +59,7 @@ long_description = filter_readme()
 
 # Pyramid testing requirements
 tests_require = [
-    'pgwui_testing==' + version,
+    'pgwui_develop==' + version,
     'WebTest >= 1.3.1',  # py3 compat
     'pytest>=3.7.4',
     'pytest-cov',
index 9948319a5a622b4a9f3a2b8432fd84a0954f9561..079176b005017db97b171e0418cba0713e022012 100644 (file)
@@ -1,4 +1,5 @@
-# Copyright (C) 2018, 2020 The Meme Factory, Inc.  http://www.karlpinc.com/
+# Copyright (C) 2018, 2020, 2021 The Meme Factory, Inc.
+# http://www.karlpinc.com/
 
 # This file is part of PGWUI_Common.
 #
@@ -26,7 +27,7 @@ import pyramid.exceptions
 import pgwui_common.assets as assets
 import pgwui_common.exceptions as common_ex
 
-from pgwui_testing import testing
+from pgwui_develop import testing
 
 # Activiate the PGWUI pytest plugin
 pytest_plugins = ("pgwui",)
index 9e08140b0425ac964c6f552dc224614af9890e1f..d4fbe9ab99646573a0146dea00225db7c7b2519a 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2018, 2019, 2020 The Meme Factory, Inc.
+# Copyright (C) 2018, 2019, 2020, 2021 The Meme Factory, Inc.
 # http://www.karlpinc.com/
 
 # This file is part of PGWUI_Common.
@@ -26,7 +26,7 @@ import pgwui_common.exceptions as ex
 import pgwui_common
 from pgwui_common import check_settings
 from pgwui_common import constants
-from pgwui_testing import testing
+from pgwui_develop import testing
 
 # Mark all tests as unit tests
 pytestmark = pytest.mark.unittest
index f86b4e58fb34f263ef85a3d2e3d9ab6402de6c8b..58ab2496a941c3e1751077e8ceee7daaf758ed6b 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2018 The Meme Factory, Inc.  http://www.meme.com/
+# Copyright (C) 2018, 2021 The Meme Factory, Inc.  http://www.meme.com/
 
 # This file is part of PGWUI_Common.
 #
@@ -23,7 +23,7 @@ import pytest
 from pyramid.path import AssetResolver
 
 import pgwui_common.path
-from pgwui_testing import testing
+from pgwui_develop import testing
 
 MockAssetResolver = testing.make_mock_fixture(
     pgwui_common.path, 'AssetResolver')
index b380dfb94c03f0d9d0be9386421b3d97943ab353..9ce55a2bf6b8ace466ad550c98c385a8b6b552a6 100644 (file)
@@ -1,4 +1,5 @@
-# Copyright (C) 2018, 2020 The Meme Factory, Inc.  http://www.karlpinc.com/
+# Copyright (C) 2018, 2020, 2021 The Meme Factory, Inc.
+# http://www.karlpinc.com/
 
 # This file is part of PGWUI_Common.
 #
@@ -28,7 +29,7 @@ import pgwui_common.urls as urls
 import pgwui_common.view as view
 import pgwui_common.pgwui_common as pgwui_common
 
-from pgwui_testing import testing
+from pgwui_develop import testing
 
 # Activiate the PGWUI pytest plugin
 pytest_plugins = ("pgwui",)
index 57985c4935886f84811fd430f8e1fdf6ddeed389..bd1fa8eeeab68e4b400672ef50b120712c40bc16 100644 (file)
@@ -21,7 +21,7 @@
 
 import pytest
 
-from pgwui_testing import testing
+from pgwui_develop import testing
 from pgwui_common import plugin
 
 
index d6526889d2bf98371cdf97f3862328053798062c..321b57d14e22333d3f43c0427a13264dfd1b3f4a 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2018, 2019, 2020 The Meme Factory, Inc.
+# Copyright (C) 2018, 2019, 2020, 2021 The Meme Factory, Inc.
 # http://www.karlpinc.com/
 
 # This file is part of PGWUI_Common.
@@ -21,7 +21,7 @@
 # Karl O. Pinc <kop@karlpinc.com>
 
 import pytest
-from pgwui_testing import testing
+from pgwui_develop import testing
 
 import logging
 import pyramid.testing
index 5c854ef41444b794321265f4dfdb991aad69a574..8b9b064f66a9795e91d5f3efe5f21d029bc834af 100644 (file)
@@ -1,4 +1,5 @@
-# Copyright (C) 2018, 2020 The Meme Factory, Inc.  http://www.karlpinc.com/
+# Copyright (C) 2018, 2020, 2021 The Meme Factory, Inc.
+# http://www.karlpinc.com/
 
 # This file is part of PGWUI_Common.
 #
@@ -27,7 +28,7 @@ from pyramid.threadlocal import get_current_request
 import pgwui_common.urls as urls
 import pgwui_common.exceptions as common_ex
 
-from pgwui_testing import testing
+from pgwui_develop import testing
 
 # Activiate the PGWUI pytest plugin
 pytest_plugins = ("pgwui",)
index 80032e3f0518c32d0f2d98988a2f88e4fe3bb2d4..4677f44870dabc90ac7b8e0d2085027eb1acce4f 100644 (file)
@@ -1,4 +1,5 @@
-# Copyright (C) 2018, 2020 The Meme Factory, Inc.  http://www.karlpinc.com/
+# Copyright (C) 2018, 2020, 2021 The Meme Factory, Inc.
+# http://www.karlpinc.com/
 
 # This file is part of PGWUI_Common.
 #
@@ -24,7 +25,7 @@ from pyramid.threadlocal import get_current_request
 
 import pgwui_common.view as view
 
-from pgwui_testing import testing
+from pgwui_develop import testing
 
 # Activiate the PGWUI pytest plugin
 pytest_plugins = ("pgwui",)
index 3f689bd812101a6caaa4006bbeba7e4f5e12a9d9..4f9ba571f0522022425a30311be0e823c156b030 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2020 The Meme Factory, Inc.  http://www.karlpinc.com/
+# Copyright (C) 2020, 2021 The Meme Factory, Inc.  http://www.karlpinc.com/
 
 # This file is part of PGWUI_Common.
 #
@@ -26,7 +26,7 @@ from pyramid.threadlocal import get_current_request
 import pgwui_common.views.ex_views as ex_views
 import pgwui_common.exceptions as common_ex
 
-import pgwui_testing.testing as testing
+import pgwui_develop.testing as testing
 
 # Activiate our pytest plugin
 # pytest_plugins = ("pgwui",)
index dcd05127423cb5c4b3daef92626a619bbc4210f5..7ea715a8787f52f911f0c44b87d145a49879fb80 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2020 The Meme Factory, Inc.  http://www.karlpinc.com/
+# Copyright (C) 2020, 2021 The Meme Factory, Inc.  http://www.karlpinc.com/
 
 # This file is part of PGWUI_Common.
 #
@@ -25,7 +25,7 @@ from pyramid.threadlocal import get_current_request
 import pgwui_common.exceptions as common_ex
 import pgwui_common.views.page_views as page_views
 
-from pgwui_testing import testing
+from pgwui_develop import testing
 
 # Activiate our pytest plugin
 # pytest_plugins = ("pgwui",)
diff --git a/tox.ini b/tox.ini
index 61916f12a959f62d6f2f39bfc379ac478829ea34..066bc0eba6fde6ef5c1786f5c1144a790313b420 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -11,7 +11,7 @@ deps =
     check-manifest
     cmarkgfm
     flake8
-    pgwui_testing
+    pgwui_develop
     pytest
     pytest-cov
     twine