├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── assets └── static │ └── style.css ├── code_examples ├── create_tests_via_parametrization │ ├── foobar.py │ ├── test_foobar.py │ ├── test_parametrize.py │ └── test_params.py ├── mark_parametrize_with_indirect │ ├── conftest.py │ ├── sushi.py │ └── test_sushi.py └── show_pytest_warnings │ └── test_foobar.py ├── configs ├── atom.ini ├── disqus-comments.ini └── markdown-highlighter.ini ├── content ├── contents.lr ├── create_tests_via_parametrization │ └── contents.lr ├── customize_class_collection │ └── contents.lr ├── debug_test_failures │ └── contents.lr ├── fixtures_as_class_attributes │ └── contents.lr ├── load_plugins_dynamically │ └── contents.lr ├── mark_parametrize_with_indirect │ └── contents.lr ├── param_id_func │ └── contents.lr ├── run_tests_using_fixture │ └── contents.lr ├── shared_directory_xdist │ └── contents.lr └── show_pytest_warnings │ └── contents.lr ├── models ├── page.ini ├── post.ini └── posts.ini ├── pytest-tricks.lektorproject ├── templates ├── layout.html ├── post.html └── posts.html └── webpack ├── js └── main.js ├── package.json ├── scss └── main.scss └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/README.md -------------------------------------------------------------------------------- /assets/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/assets/static/style.css -------------------------------------------------------------------------------- /code_examples/create_tests_via_parametrization/foobar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/code_examples/create_tests_via_parametrization/foobar.py -------------------------------------------------------------------------------- /code_examples/create_tests_via_parametrization/test_foobar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/code_examples/create_tests_via_parametrization/test_foobar.py -------------------------------------------------------------------------------- /code_examples/create_tests_via_parametrization/test_parametrize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/code_examples/create_tests_via_parametrization/test_parametrize.py -------------------------------------------------------------------------------- /code_examples/create_tests_via_parametrization/test_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/code_examples/create_tests_via_parametrization/test_params.py -------------------------------------------------------------------------------- /code_examples/mark_parametrize_with_indirect/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/code_examples/mark_parametrize_with_indirect/conftest.py -------------------------------------------------------------------------------- /code_examples/mark_parametrize_with_indirect/sushi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/code_examples/mark_parametrize_with_indirect/sushi.py -------------------------------------------------------------------------------- /code_examples/mark_parametrize_with_indirect/test_sushi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/code_examples/mark_parametrize_with_indirect/test_sushi.py -------------------------------------------------------------------------------- /code_examples/show_pytest_warnings/test_foobar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/code_examples/show_pytest_warnings/test_foobar.py -------------------------------------------------------------------------------- /configs/atom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/configs/atom.ini -------------------------------------------------------------------------------- /configs/disqus-comments.ini: -------------------------------------------------------------------------------- 1 | shortname = pytest-tricks 2 | -------------------------------------------------------------------------------- /configs/markdown-highlighter.ini: -------------------------------------------------------------------------------- 1 | [pygments] 2 | style = default 3 | -------------------------------------------------------------------------------- /content/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/content/contents.lr -------------------------------------------------------------------------------- /content/create_tests_via_parametrization/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/content/create_tests_via_parametrization/contents.lr -------------------------------------------------------------------------------- /content/customize_class_collection/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/content/customize_class_collection/contents.lr -------------------------------------------------------------------------------- /content/debug_test_failures/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/content/debug_test_failures/contents.lr -------------------------------------------------------------------------------- /content/fixtures_as_class_attributes/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/content/fixtures_as_class_attributes/contents.lr -------------------------------------------------------------------------------- /content/load_plugins_dynamically/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/content/load_plugins_dynamically/contents.lr -------------------------------------------------------------------------------- /content/mark_parametrize_with_indirect/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/content/mark_parametrize_with_indirect/contents.lr -------------------------------------------------------------------------------- /content/param_id_func/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/content/param_id_func/contents.lr -------------------------------------------------------------------------------- /content/run_tests_using_fixture/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/content/run_tests_using_fixture/contents.lr -------------------------------------------------------------------------------- /content/shared_directory_xdist/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/content/shared_directory_xdist/contents.lr -------------------------------------------------------------------------------- /content/show_pytest_warnings/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/content/show_pytest_warnings/contents.lr -------------------------------------------------------------------------------- /models/page.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/models/page.ini -------------------------------------------------------------------------------- /models/post.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/models/post.ini -------------------------------------------------------------------------------- /models/posts.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/models/posts.ini -------------------------------------------------------------------------------- /pytest-tricks.lektorproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/pytest-tricks.lektorproject -------------------------------------------------------------------------------- /templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/templates/layout.html -------------------------------------------------------------------------------- /templates/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/templates/post.html -------------------------------------------------------------------------------- /templates/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/templates/posts.html -------------------------------------------------------------------------------- /webpack/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/webpack/js/main.js -------------------------------------------------------------------------------- /webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/webpack/package.json -------------------------------------------------------------------------------- /webpack/scss/main.scss: -------------------------------------------------------------------------------- 1 | div.comment-box { 2 | margin-top: 40px; 3 | } 4 | -------------------------------------------------------------------------------- /webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackebrot/pytest-tricks/HEAD/webpack/webpack.config.js --------------------------------------------------------------------------------