zope.pytestlayer 8.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. zope/pytestlayer/__init__.py +0 -0
  2. zope/pytestlayer/_compat.py +18 -0
  3. zope/pytestlayer/doctest.py +31 -0
  4. zope/pytestlayer/fixture.py +234 -0
  5. zope/pytestlayer/layered.py +100 -0
  6. zope/pytestlayer/plugin.py +122 -0
  7. zope/pytestlayer/testing.py +6 -0
  8. zope/pytestlayer/tests/__init__.py +0 -0
  9. zope/pytestlayer/tests/conftest.py +3 -0
  10. zope/pytestlayer/tests/fixture/bad_layer/__init__.py +0 -0
  11. zope/pytestlayer/tests/fixture/bad_layer/conftest.py +1 -0
  12. zope/pytestlayer/tests/fixture/bad_layer/test_core.py +13 -0
  13. zope/pytestlayer/tests/fixture/custom_fixture_name/__init__.py +0 -0
  14. zope/pytestlayer/tests/fixture/custom_fixture_name/conftest.py +12 -0
  15. zope/pytestlayer/tests/fixture/custom_fixture_name/test_core.py +38 -0
  16. zope/pytestlayer/tests/fixture/keep_layer_across_test_classes/__init__.py +0 -0
  17. zope/pytestlayer/tests/fixture/keep_layer_across_test_classes/conftest.py +1 -0
  18. zope/pytestlayer/tests/fixture/keep_layer_across_test_classes/test_core.py +101 -0
  19. zope/pytestlayer/tests/fixture/layers_with_same_name/__init__.py +0 -0
  20. zope/pytestlayer/tests/fixture/layers_with_same_name/conftest.py +1 -0
  21. zope/pytestlayer/tests/fixture/layers_with_same_name/test_core.py +40 -0
  22. zope/pytestlayer/tests/fixture/no_setup_or_teardown/__init__.py +0 -0
  23. zope/pytestlayer/tests/fixture/no_setup_or_teardown/conftest.py +1 -0
  24. zope/pytestlayer/tests/fixture/no_setup_or_teardown/test_core.py +14 -0
  25. zope/pytestlayer/tests/fixture/order_by_layer/__init__.py +0 -0
  26. zope/pytestlayer/tests/fixture/order_by_layer/conftest.py +1 -0
  27. zope/pytestlayer/tests/fixture/order_by_layer/test_core.py +112 -0
  28. zope/pytestlayer/tests/fixture/order_with_layered_suite/__init__.py +0 -0
  29. zope/pytestlayer/tests/fixture/order_with_layered_suite/conftest.py +1 -0
  30. zope/pytestlayer/tests/fixture/order_with_layered_suite/foo.txt +14 -0
  31. zope/pytestlayer/tests/fixture/order_with_layered_suite/foobar.txt +14 -0
  32. zope/pytestlayer/tests/fixture/order_with_layered_suite/test_core.py +139 -0
  33. zope/pytestlayer/tests/fixture/session_fixture/__init__.py +0 -0
  34. zope/pytestlayer/tests/fixture/session_fixture/conftest.py +13 -0
  35. zope/pytestlayer/tests/fixture/session_fixture/test_core.py +37 -0
  36. zope/pytestlayer/tests/fixture/shared_with_layered_suite/__init__.py +0 -0
  37. zope/pytestlayer/tests/fixture/shared_with_layered_suite/conftest.py +1 -0
  38. zope/pytestlayer/tests/fixture/shared_with_layered_suite/mydoctest.txt +10 -0
  39. zope/pytestlayer/tests/fixture/shared_with_layered_suite/test_core.py +53 -0
  40. zope/pytestlayer/tests/fixture/single_layer/__init__.py +0 -0
  41. zope/pytestlayer/tests/fixture/single_layer/conftest.py +1 -0
  42. zope/pytestlayer/tests/fixture/single_layer/test_core.py +33 -0
  43. zope/pytestlayer/tests/fixture/single_layer_in_two_modules/__init__.py +0 -0
  44. zope/pytestlayer/tests/fixture/single_layer_in_two_modules/conftest.py +1 -0
  45. zope/pytestlayer/tests/fixture/single_layer_in_two_modules/test_core.py +33 -0
  46. zope/pytestlayer/tests/fixture/single_layer_in_two_modules/test_second_module.py +12 -0
  47. zope/pytestlayer/tests/fixture/single_layer_with_unattached_base_layer/__init__.py +0 -0
  48. zope/pytestlayer/tests/fixture/single_layer_with_unattached_base_layer/conftest.py +1 -0
  49. zope/pytestlayer/tests/fixture/single_layer_with_unattached_base_layer/test_core.py +54 -0
  50. zope/pytestlayer/tests/fixture/single_layered_suite/__init__.py +0 -0
  51. zope/pytestlayer/tests/fixture/single_layered_suite/conftest.py +1 -0
  52. zope/pytestlayer/tests/fixture/single_layered_suite/doctest.txt +10 -0
  53. zope/pytestlayer/tests/fixture/single_layered_suite/test_core.py +44 -0
  54. zope/pytestlayer/tests/fixture/two_dependent_layered_suites/__init__.py +0 -0
  55. zope/pytestlayer/tests/fixture/two_dependent_layered_suites/bar.txt +14 -0
  56. zope/pytestlayer/tests/fixture/two_dependent_layered_suites/conftest.py +1 -0
  57. zope/pytestlayer/tests/fixture/two_dependent_layered_suites/foo.txt +14 -0
  58. zope/pytestlayer/tests/fixture/two_dependent_layered_suites/test_core.py +72 -0
  59. zope/pytestlayer/tests/fixture/two_dependent_layers/__init__.py +0 -0
  60. zope/pytestlayer/tests/fixture/two_dependent_layers/conftest.py +1 -0
  61. zope/pytestlayer/tests/fixture/two_dependent_layers/test_core.py +67 -0
  62. zope/pytestlayer/tests/fixture/two_independent_layers/__init__.py +0 -0
  63. zope/pytestlayer/tests/fixture/two_independent_layers/conftest.py +1 -0
  64. zope/pytestlayer/tests/fixture/two_independent_layers/test_core.py +67 -0
  65. zope/pytestlayer/tests/fixture/with_and_without_layer/__init__.py +0 -0
  66. zope/pytestlayer/tests/fixture/with_and_without_layer/conftest.py +1 -0
  67. zope/pytestlayer/tests/fixture/with_and_without_layer/test_core.py +39 -0
  68. zope/pytestlayer/tests/test_doctest.py +16 -0
  69. zope/pytestlayer/tests/test_fixture.py +17 -0
  70. zope/pytestlayer/tests/test_integration.py +524 -0
  71. zope/pytestlayer/tests/test_layer.py +13 -0
  72. zope.pytestlayer-8.2-py3.11-nspkg.pth +1 -0
  73. zope.pytestlayer-8.2.dist-info/LICENSE.txt +43 -0
  74. zope.pytestlayer-8.2.dist-info/METADATA +318 -0
  75. zope.pytestlayer-8.2.dist-info/RECORD +79 -0
  76. zope.pytestlayer-8.2.dist-info/WHEEL +5 -0
  77. zope.pytestlayer-8.2.dist-info/entry_points.txt +2 -0
  78. zope.pytestlayer-8.2.dist-info/namespace_packages.txt +1 -0
  79. zope.pytestlayer-8.2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,318 @@
1
+ Metadata-Version: 2.1
2
+ Name: zope.pytestlayer
3
+ Version: 8.2
4
+ Summary: Integration of zope.testrunner-style test layers into pytest framework
5
+ Home-page: https://github.com/zopefoundation/zope.pytestlayer/
6
+ Author: gocept
7
+ Author-email: zope-dev@zope.dev
8
+ License: ZPL 2.1
9
+ Keywords: pytest zope.testrunner layer fixture
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Environment :: Console
12
+ Classifier: Framework :: Pytest
13
+ Classifier: Framework :: Plone
14
+ Classifier: Framework :: Zope :: 3
15
+ Classifier: Framework :: Zope :: 5
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: License :: OSI Approved :: Zope Public License
18
+ Classifier: Natural Language :: English
19
+ Classifier: Operating System :: OS Independent
20
+ Classifier: Programming Language :: Python :: 3
21
+ Classifier: Programming Language :: Python :: 3.7
22
+ Classifier: Programming Language :: Python :: 3.8
23
+ Classifier: Programming Language :: Python :: 3.9
24
+ Classifier: Programming Language :: Python :: 3.10
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
+ Classifier: Programming Language :: Python :: Implementation
28
+ Classifier: Programming Language :: Python :: Implementation :: CPython
29
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
30
+ Classifier: Topic :: Software Development
31
+ Classifier: Topic :: Software Development :: Libraries
32
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
33
+ Classifier: Topic :: Software Development :: Testing
34
+ Requires-Python: >=3.7
35
+ License-File: LICENSE.txt
36
+ Requires-Dist: pytest <8,>=6
37
+ Requires-Dist: setuptools
38
+ Requires-Dist: zope.dottedname
39
+ Provides-Extra: docs
40
+ Requires-Dist: Sphinx ; extra == 'docs'
41
+ Requires-Dist: gocept.package ; extra == 'docs'
42
+ Provides-Extra: test
43
+ Requires-Dist: plone.testing ; extra == 'test'
44
+
45
+ =================================
46
+ The zope.pytestlayer distribution
47
+ =================================
48
+
49
+ .. image:: https://img.shields.io/pypi/v/zope.pytestlayer.svg
50
+ :target: https://pypi.org/project/zope.pytestlayer/
51
+
52
+ .. image:: https://img.shields.io/pypi/pyversions/zope.pytestlayer.svg
53
+ :target: https://pypi.org/project/zope.pytestlayer/
54
+
55
+ .. image:: https://github.com/zopefoundation/zope.pytestlayer/actions/workflows/tests.yml/badge.svg
56
+ :target: https://github.com/zopefoundation/zope.pytestlayer/actions?query=tests
57
+
58
+ .. image:: https://coveralls.io/repos/github/zope/zope.pytestlayer/badge.svg?branch=master
59
+ :target: https://coveralls.io/github/zope/zope.pytestlayer?branch=master
60
+
61
+
62
+ Integration of zope.testrunner-style test layers into the `pytest`_
63
+ framework
64
+
65
+ This package is compatible with Python versions 3.7 - 3.12 including
66
+ PyPy3.
67
+
68
+ It was formerly known as ``gocept.pytestlayer``.
69
+
70
+ .. _`pytest` : http://pytest.org
71
+
72
+ Quick start
73
+ ===========
74
+
75
+ * Make sure your test files follow the `conventions of pytest's test
76
+ discovery`_
77
+
78
+ .. _`conventions of pytest's test discovery`:
79
+ http://pytest.org/latest/goodpractises.html#python-test-discovery
80
+
81
+ In particular, a file named ``tests.py`` will not be recognized.
82
+
83
+ * Add a buildout section to create the `pytest` runner::
84
+
85
+ [buildout]
86
+ parts += pytest
87
+
88
+ [pytest]
89
+ recipe = zc.recipe.egg
90
+ eggs = zope.pytestlayer
91
+ pytest
92
+ <YOUR PACKAGE HERE>
93
+
94
+ ``zope.pytestlayer`` registers itself as a ``pytest`` plugin. This way, nothing
95
+ more is needed to run an existing Zope or Plone test suite.
96
+
97
+ Advanced usage
98
+ ==============
99
+
100
+ Version 2.1 reintroduced `fixture.create()` to be able to define the name of
101
+ the generated to pytest fixtures. So it is possible to use them in function
102
+ style tests.
103
+
104
+ Example (Code has to be in `contest.py`!)::
105
+
106
+ from .testing import FUNCTIONAL_LAYER
107
+ import zope.pytestlayer.fixture
108
+
109
+ globals().update(zope.pytestlayer.fixture.create(
110
+ FUNCTIONAL_LAYER,
111
+ session_fixture_name='functional_session',
112
+ class_fixture_name='functional_class',
113
+ function_fixture_name='functional'))
114
+
115
+ This creates three fixtures with the given names and the scopes in the argument
116
+ name. The session and class fixtures run `setUp()` and `tearDown()` of the
117
+ layer if it has not been run before while the function fixture runs
118
+ `testSetUp()` and `testTearDown()` of the layer. The function fixture depends
119
+ on the session one. The fixtures return the instance of the layer. So you can
120
+ use the `functional` fixture like this::
121
+
122
+ def test_mymodule__my_function__1(functional):
123
+ assert functional['app'] is not None
124
+
125
+ Not supported use cases
126
+ =======================
127
+
128
+ * Inheriting from a base class while changing the layer. See commit `f879f9e
129
+ <https://github.com/zope/zope.pytestlayer/commit/f879f9eb21cbd41a843b5021bc1264e9462fb505>`_.
130
+
131
+ * Mixing classes inheriting ``unittest.TestCase`` and a ``test_suite()``
132
+ function (e. g. to create a ``DocTestSuite`` or a ``DocFileSuite``) in a
133
+ single module (aka file).
134
+
135
+ * This is a limitation of the `pytest` test discovery which ignores the
136
+ doctests in this case.
137
+
138
+ * Solution: Put the classes and ``test_suite()`` into different modules.
139
+
140
+ * A ``doctest.DocFileSuite`` which does not have a ``layer`` is silently
141
+ skipped. Use the built-in doctest abilities of pytest to run those tests.
142
+
143
+
144
+ ===========================
145
+ Developing zope.pytestlayer
146
+ ===========================
147
+
148
+ :Author:
149
+ gocept,
150
+ Godefroid Chapelle <gotcha@bubblenet.be>
151
+
152
+ :PyPI page:
153
+ https://pypi.org/project/zope.pytestlayer/
154
+
155
+ :Issues:
156
+ https://github.com/zopefoundation/zope.pytestlayer/issues
157
+
158
+ :Source code:
159
+ https://github.com/zopefoundation/zope.pytestlayer
160
+
161
+ :Current change log:
162
+ https://raw.githubusercontent.com/zopefoundation/zope.pytestlayer/master/CHANGES.rst
163
+
164
+
165
+ =================================
166
+ Change log for zope.pytestlayer
167
+ =================================
168
+
169
+ 8.2 (2024-05-15)
170
+ ================
171
+
172
+ - Make tests compatible with pytest >= 7.3. (Caution: We do not yet support
173
+ pytest >= 8)
174
+
175
+ - Add support for Python 3.11.
176
+
177
+ - Add support for Python 3.12.
178
+
179
+ - Rename from ``gocept.pytestlayer`` to ``zope.pytestlayer``.
180
+
181
+
182
+ 8.1 (2022-09-05)
183
+ ================
184
+
185
+ - Ensure compatibility with pytest >= 7.1.3.
186
+ ``.layered.LayeredTestCaseInstance`` now has to inherit from
187
+ ``_pytest.unittest.UnitTestCase``.
188
+
189
+
190
+ 8.0 (2021-12-13)
191
+ ================
192
+
193
+ - Use GitHub actions as CI.
194
+
195
+ - Add support for Python 3.9 and 3.10.
196
+
197
+ - Drop support for Python 3.6.
198
+
199
+ - Add a workaround for
200
+ `#4 <https://github.com/gocept/gocept.pytestlayer/issues/4>`_: Use
201
+ ``gcoept.pytestlayer.doctest.DocTestSuite`` instead of
202
+ ``doctest.DocTestSuite`` to circumvent the issue.
203
+
204
+
205
+ 7.0 (2020-08-03)
206
+ ================
207
+
208
+ Backwards imcompatible changes
209
+ ------------------------------
210
+
211
+ - Drop support for Python 2.7 and 3.5 and ``pytest < 5.0``. (#8)
212
+
213
+ Features
214
+ --------
215
+
216
+ - Support ``pytest >= 6.0``. (#8)
217
+
218
+
219
+ 6.3 (2020-05-15)
220
+ ================
221
+
222
+ - Ensure compatibility with pytest > 5.4.2. We need a
223
+ ``_explicit_tearDown`` on our ``LayeredTestCaseFunction`` now.
224
+
225
+
226
+ 6.2 (2020-03-20)
227
+ ================
228
+
229
+ - Ensure compatibility with pytest > 5.4. We need a
230
+ ``_needs_explicit_tearDown`` on our ``LayeredTestCaseFunction`` now.
231
+
232
+
233
+ 6.1 (2020-02-20)
234
+ ================
235
+
236
+ - Fix tests to run with `pytest >= 4.2.0`.
237
+
238
+ - Migrate to Github.
239
+
240
+ - Do not break when rerunning a doctest using `pytest-rerunfailures`.
241
+
242
+ - Add support for Python 3.8.
243
+
244
+
245
+ 6.0 (2018-10-24)
246
+ ================
247
+
248
+ - Add support for Python 3.6, 3.7 and PyPy3.
249
+
250
+ - Drop support for Python 3.4.
251
+
252
+ - Fix tests to run with `pytest >= 3.9.1`.
253
+
254
+ - Release also as universal wheel.
255
+
256
+ - Update to new pytest fixture API to avoid DeprecationWarnings. (#10)
257
+
258
+
259
+ 5.1 (2016-12-02)
260
+ ================
261
+
262
+ - Make installation process compatible with `setuptools >= 30.0`.
263
+
264
+
265
+ 5.0 (2016-08-23)
266
+ ================
267
+
268
+ - Fix tests to pass if `pytest >= 3.0` is used for testing.
269
+
270
+
271
+ 4.0 (2016-04-27)
272
+ ================
273
+
274
+ - Support Python 3.4, 3.5 and PyPy.
275
+
276
+ - Use tox as testrunner.
277
+
278
+
279
+ 3.0 (2016-04-14)
280
+ ================
281
+
282
+ - Claim compatibility with py.test 2.9.x.
283
+
284
+ - Drop Python 2.6 support.
285
+
286
+ 2.1 (2014-10-22)
287
+ ================
288
+
289
+ - Update handling of keywords and doctest testnames for py.test-2.5.
290
+ [wosc]
291
+
292
+ - Re-introduce ``gocept.pytestlayer.fixture.create()`` method, to allow giving
293
+ created fixtures a non-random name, so other fixtures can depend on them.
294
+ [tlotze, wosc]
295
+
296
+ - Generate session-scoped fixtures from layers in addition to class-scoped
297
+ ones, if a session-scoped one is required somewhere, the class-scoped ones
298
+ are simply ignored. [tlotze, wosc]
299
+
300
+
301
+ 2.0 (2013-09-19)
302
+ ================
303
+
304
+ - Remove need to explicitely create fixtures.
305
+ [gotcha]
306
+
307
+ - Add ``plone.testing.layered`` test suites support.
308
+ [gotcha]
309
+
310
+ - Made tests a bit more robust.
311
+ [icemac]
312
+
313
+
314
+ 1.0 (2013-08-28)
315
+ ================
316
+
317
+ - Initial release.
318
+ [tlotze, icemac, gotcha]
@@ -0,0 +1,79 @@
1
+ zope.pytestlayer-8.2-py3.11-nspkg.pth,sha256=SWEVH-jEWsKYrL0qoC6GBJaStx_iKxGoAY9PQycFVC4,529
2
+ zope/pytestlayer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ zope/pytestlayer/_compat.py,sha256=ODubNuc02V1KCiEuhLeB4C4x5_uh4d2HDahOBC8j0Y0,509
4
+ zope/pytestlayer/doctest.py,sha256=RpjIiKwlcZaWANO_a3uHXyvuKNHwv0nmoIkSJlijovU,612
5
+ zope/pytestlayer/fixture.py,sha256=l1rXUIen-AXfjTrXbYAJ8DuCddPgrLZpfdqGCW9AqdA,6578
6
+ zope/pytestlayer/layered.py,sha256=7LRqAplRyAGUxJ_Lsq_AuKwQfVUBiGzSNcHGCjlq5Jg,3190
7
+ zope/pytestlayer/plugin.py,sha256=5cEnl25YkgQFn2yklPuJAb_5-siuhBXhXKaZJQf-k8U,3578
8
+ zope/pytestlayer/testing.py,sha256=RiqBs3LCxIiiVIrGf88FEFuDgqfuT8gKa7we-muNVsQ,244
9
+ zope/pytestlayer/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ zope/pytestlayer/tests/conftest.py,sha256=aI_P8ijjzCPkF2WJuz4BjTQ2AKpJV2AWAu46zTLxhG4,102
11
+ zope/pytestlayer/tests/test_doctest.py,sha256=IQrD93qFQMLSCJsRqQ7mEQc5dzg_fNCWfML7bQxEtnw,314
12
+ zope/pytestlayer/tests/test_fixture.py,sha256=UKDLevsziXYKiSZcyemwQg5-BLh2vOIEZ-B90vKBsdk,559
13
+ zope/pytestlayer/tests/test_integration.py,sha256=F2Md8ajspoY62cZTKjIZ3MH5S-cI7yzUt7mnMaObjp8,24935
14
+ zope/pytestlayer/tests/test_layer.py,sha256=4hTXPmRHxx_g_zf7qGGPN4mhwg9WOuvEebUQ4nYa62M,270
15
+ zope/pytestlayer/tests/fixture/bad_layer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ zope/pytestlayer/tests/fixture/bad_layer/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
17
+ zope/pytestlayer/tests/fixture/bad_layer/test_core.py,sha256=BRRS_g820lOqRjWcHYgOEq2hLs4NjRr4XQyaOqrTlko,186
18
+ zope/pytestlayer/tests/fixture/custom_fixture_name/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ zope/pytestlayer/tests/fixture/custom_fixture_name/conftest.py,sha256=rp3wijpURrISyDUw0eKqolmT0z6I8GT96BbnEQsmUWU,267
20
+ zope/pytestlayer/tests/fixture/custom_fixture_name/test_core.py,sha256=7upA-K23t6vfzyHvH4MD1-C5ZcKx-q-bu0A9z31ZGuo,894
21
+ zope/pytestlayer/tests/fixture/keep_layer_across_test_classes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ zope/pytestlayer/tests/fixture/keep_layer_across_test_classes/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
23
+ zope/pytestlayer/tests/fixture/keep_layer_across_test_classes/test_core.py,sha256=8Aag2fu_wx4ocu_o8HvJUIAmDMmW2lFsnGsMQIuJdW0,2520
24
+ zope/pytestlayer/tests/fixture/layers_with_same_name/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ zope/pytestlayer/tests/fixture/layers_with_same_name/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
26
+ zope/pytestlayer/tests/fixture/layers_with_same_name/test_core.py,sha256=LTDDSMYnZ-ob2ofBE0kwbwQyX7jJSE1-ibdm8IfpBzc,741
27
+ zope/pytestlayer/tests/fixture/no_setup_or_teardown/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
+ zope/pytestlayer/tests/fixture/no_setup_or_teardown/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
29
+ zope/pytestlayer/tests/fixture/no_setup_or_teardown/test_core.py,sha256=pk0fWdwZSHdnJudt50ZSQn2UJ5IbJlJskzCjbqp-89U,253
30
+ zope/pytestlayer/tests/fixture/order_by_layer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
+ zope/pytestlayer/tests/fixture/order_by_layer/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
32
+ zope/pytestlayer/tests/fixture/order_by_layer/test_core.py,sha256=4yBPp4DJ872FRLQESGne0jC1jvED1KUG-gyiBNd8vJo,2841
33
+ zope/pytestlayer/tests/fixture/order_with_layered_suite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
+ zope/pytestlayer/tests/fixture/order_with_layered_suite/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
35
+ zope/pytestlayer/tests/fixture/order_with_layered_suite/foo.txt,sha256=nTZW8LIkJaZQHbEisaO79m5SiuY0XtoAeEvWWB3_07M,281
36
+ zope/pytestlayer/tests/fixture/order_with_layered_suite/foobar.txt,sha256=KRrI5GI1ZtE2FxOzgRAoFWXU_ErQClVqxjmghXLbRgw,271
37
+ zope/pytestlayer/tests/fixture/order_with_layered_suite/test_core.py,sha256=iNRU5VEPGOWcZc9WxIFBLuhX5ZkSPKEUj6ENc8FPLMw,3411
38
+ zope/pytestlayer/tests/fixture/session_fixture/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
+ zope/pytestlayer/tests/fixture/session_fixture/conftest.py,sha256=bEIDDXwbAzfSw5WFgX4r2TpsuUzERhLJrsAk53v6wu8,309
40
+ zope/pytestlayer/tests/fixture/session_fixture/test_core.py,sha256=G2_jkjFaZAKG8S70JKGCa_11T8gdxzS9gUAb23QhzbA,866
41
+ zope/pytestlayer/tests/fixture/shared_with_layered_suite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
+ zope/pytestlayer/tests/fixture/shared_with_layered_suite/conftest.py,sha256=mEdcDy-3jMSWRhUpY7i0ZX_ipkIP6GbX9bieaQghS_4,32
43
+ zope/pytestlayer/tests/fixture/shared_with_layered_suite/mydoctest.txt,sha256=TigWUZY6VrW_QB4dMZKkBRXOUy61NfOFGQSFbGNxFAI,191
44
+ zope/pytestlayer/tests/fixture/shared_with_layered_suite/test_core.py,sha256=mBAhOCynXjHpm5_2nFobPF4KiedauIR-T63kPEd8_uc,1108
45
+ zope/pytestlayer/tests/fixture/single_layer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ zope/pytestlayer/tests/fixture/single_layer/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
47
+ zope/pytestlayer/tests/fixture/single_layer/test_core.py,sha256=zVFi4gbDInRaUFIebs1z6YsU4WMpILYjr2QasmNJWx4,711
48
+ zope/pytestlayer/tests/fixture/single_layer_in_two_modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ zope/pytestlayer/tests/fixture/single_layer_in_two_modules/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
50
+ zope/pytestlayer/tests/fixture/single_layer_in_two_modules/test_core.py,sha256=zVFi4gbDInRaUFIebs1z6YsU4WMpILYjr2QasmNJWx4,711
51
+ zope/pytestlayer/tests/fixture/single_layer_in_two_modules/test_second_module.py,sha256=fQp9RKOeCEGDmqvXK6wbbNmNY3ORY9siR50HJUPJN7U,252
52
+ zope/pytestlayer/tests/fixture/single_layer_with_unattached_base_layer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ zope/pytestlayer/tests/fixture/single_layer_with_unattached_base_layer/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
54
+ zope/pytestlayer/tests/fixture/single_layer_with_unattached_base_layer/test_core.py,sha256=tBkNklk-rKNweXrihazbly3Y5ZEDAcSjSsE2xRLcioI,1151
55
+ zope/pytestlayer/tests/fixture/single_layered_suite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
+ zope/pytestlayer/tests/fixture/single_layered_suite/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
57
+ zope/pytestlayer/tests/fixture/single_layered_suite/doctest.txt,sha256=3i-mQ9tFmv5Pegj4EEJ7my5qKOEceKYrxQAW3iVtPIA,186
58
+ zope/pytestlayer/tests/fixture/single_layered_suite/test_core.py,sha256=fAORzmOqBiMWkzzd4XkTzyQbOQK6-psnyaSPvgBFzr4,903
59
+ zope/pytestlayer/tests/fixture/two_dependent_layered_suites/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
+ zope/pytestlayer/tests/fixture/two_dependent_layered_suites/bar.txt,sha256=_j8_2ntQKKXy5el2h5GTJo4x5VpkVen05hXE10d0N54,272
61
+ zope/pytestlayer/tests/fixture/two_dependent_layered_suites/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
62
+ zope/pytestlayer/tests/fixture/two_dependent_layered_suites/foo.txt,sha256=XNY6g43YJA0rGIebgbhnfyXisM_GiRb8E3tQp1ghTMs,285
63
+ zope/pytestlayer/tests/fixture/two_dependent_layered_suites/test_core.py,sha256=uuTj5Wj8qiVlrXimETrmdeHSmL2Q2KHN3TBdWY4KxNc,1512
64
+ zope/pytestlayer/tests/fixture/two_dependent_layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ zope/pytestlayer/tests/fixture/two_dependent_layers/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
66
+ zope/pytestlayer/tests/fixture/two_dependent_layers/test_core.py,sha256=mlO4WOYyUuvRqAO36KzLvuBD2165ZhIQ1svEA9F_SBI,1589
67
+ zope/pytestlayer/tests/fixture/two_independent_layers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
+ zope/pytestlayer/tests/fixture/two_independent_layers/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
69
+ zope/pytestlayer/tests/fixture/two_independent_layers/test_core.py,sha256=zgl7Bz0u3cRgtJtJNACN9jbla2RublYqH7PzKcFXIx4,1586
70
+ zope/pytestlayer/tests/fixture/with_and_without_layer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
+ zope/pytestlayer/tests/fixture/with_and_without_layer/conftest.py,sha256=Qln9MdbO4E9o9xKb2K-NlGqOqNGU6_MLJ3_NLABtcs8,33
72
+ zope/pytestlayer/tests/fixture/with_and_without_layer/test_core.py,sha256=4KlRD6zFu9iSELfW2c7enCOihzZPJqkqTK2zqNEtO7Q,824
73
+ zope.pytestlayer-8.2.dist-info/LICENSE.txt,sha256=LgkZgYmTrW63RHfPZ8BfITPglCA-HDxyqtyqLPU7KSs,2070
74
+ zope.pytestlayer-8.2.dist-info/METADATA,sha256=3xZgsuHviXUrMw2UaGKUrRcxWemR_iOx9FvLh0y_BUI,8705
75
+ zope.pytestlayer-8.2.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
76
+ zope.pytestlayer-8.2.dist-info/entry_points.txt,sha256=2BnISErq8sFcv67dwMyQY_gHfOnZv54sv3jsek39YCE,47
77
+ zope.pytestlayer-8.2.dist-info/namespace_packages.txt,sha256=QpUHvpO4wIuZDeEgKY8qZCtD-tAukB0fn_f6utzlb98,5
78
+ zope.pytestlayer-8.2.dist-info/top_level.txt,sha256=QpUHvpO4wIuZDeEgKY8qZCtD-tAukB0fn_f6utzlb98,5
79
+ zope.pytestlayer-8.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.42.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [pytest11]
2
+ zopelayer = zope.pytestlayer.plugin
@@ -0,0 +1 @@
1
+ zope