teach plugins with dependencies to behave
3
.gitignore
vendored
@@ -1 +1,2 @@
|
||||
*.pyc
|
||||
*.pyc
|
||||
*.log
|
||||
@@ -10,4 +10,4 @@ install:
|
||||
- pip install -e git://github.com/getpelican/pelican.git#egg=pelican
|
||||
- pip install --use-mirrors Markdown
|
||||
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install --use-mirrors webassets cssmin; fi
|
||||
script: nosetests tests
|
||||
script: nosetests
|
||||
|
||||
@@ -9,7 +9,9 @@ request. Make sure that your plugin follows the structure below::
|
||||
my_plugin
|
||||
├── __init__.py
|
||||
├── my_plugin.py
|
||||
├── test_my_plugin.py
|
||||
└── Readme.rst / Readme.md
|
||||
|
||||
|
||||
``my_plugin.py`` is the actual plugin implementation. Include a brief
|
||||
explanation of what the plugin does as a module docstring. Leave any further
|
||||
@@ -17,9 +19,8 @@ explanations and usage details to ``Readme`` file.
|
||||
|
||||
``__init__.py`` should contain a single line with ``from .my_plugin import *``.
|
||||
|
||||
If you have tests for your plugin, place them in the ``tests`` folder with name
|
||||
``test_my_plugin.py``. You can use ``test_data`` folder inside, if you need content
|
||||
or templates in your tests.
|
||||
Place tests for your plugin in the same folder with name ``test_my_plugin.py``.
|
||||
You can use ``test_data`` main folder, if you need content or templates in your tests.
|
||||
|
||||
**Note:** Plugins in the repository are licensed with *GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
Version 3*. By submitting a pull request, you accept to release your
|
||||
|
||||
@@ -20,9 +20,14 @@ import os
|
||||
import logging
|
||||
|
||||
from pelican import signals
|
||||
from webassets import Environment
|
||||
from webassets.ext.jinja2 import AssetsExtension
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
try:
|
||||
import webassets
|
||||
from webassets import Environment
|
||||
from webassets.ext.jinja2 import AssetsExtension
|
||||
except ImportError:
|
||||
webassets = None
|
||||
|
||||
def add_jinja2_ext(pelican):
|
||||
"""Add Webassets to Jinja2 extensions in Pelican settings."""
|
||||
@@ -41,13 +46,15 @@ def create_assets_env(generator):
|
||||
for item in generator.settings['ASSET_CONFIG']:
|
||||
generator.env.assets_environment.config[item[0]] = item[1]
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
if logging.getLevelName(logger.getEffectiveLevel()) == "DEBUG":
|
||||
generator.env.assets_environment.debug = True
|
||||
|
||||
|
||||
def register():
|
||||
"""Plugin registration."""
|
||||
|
||||
signals.initialized.connect(add_jinja2_ext)
|
||||
signals.generator_init.connect(create_assets_env)
|
||||
if webassets:
|
||||
signals.initialized.connect(add_jinja2_ext)
|
||||
signals.generator_init.connect(create_assets_env)
|
||||
else:
|
||||
logger.warning('`assets` failed to load dependency `webassets`.'
|
||||
'`assets` plugin not loaded.')
|
||||
|
||||
@@ -13,10 +13,6 @@ import subprocess
|
||||
from pelican import Pelican
|
||||
from pelican.settings import read_settings
|
||||
|
||||
import pytest
|
||||
|
||||
assets = pytest.importorskip("assets")
|
||||
|
||||
CUR_DIR = os.path.dirname(__file__)
|
||||
THEME_DIR = os.path.join(CUR_DIR, 'test_data')
|
||||
CSS_REF = open(os.path.join(THEME_DIR, 'static', 'css',
|
||||
@@ -62,10 +58,10 @@ class TestWebAssets(unittest.TestCase):
|
||||
"""Base class for testing webassets."""
|
||||
|
||||
def setUp(self, override=None):
|
||||
|
||||
import assets
|
||||
self.temp_path = mkdtemp(prefix='pelicantests.')
|
||||
settings = {
|
||||
'PATH': os.path.join(os.path.dirname(CUR_DIR), 'tests', 'content'),
|
||||
'PATH': os.path.join(os.path.dirname(CUR_DIR), 'test_data', 'content'),
|
||||
'OUTPUT_PATH': self.temp_path,
|
||||
'PLUGINS': [assets],
|
||||
'THEME': THEME_DIR,
|
||||
|
||||
@@ -11,6 +11,9 @@ A plugin to list your Github Activity
|
||||
|
||||
from __future__ import unicode_literals, print_function
|
||||
|
||||
import logging
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
from pelican import signals
|
||||
|
||||
|
||||
@@ -19,12 +22,9 @@ class GitHubActivity():
|
||||
A class created to fetch github activity with feedparser
|
||||
"""
|
||||
def __init__(self, generator):
|
||||
try:
|
||||
import feedparser
|
||||
self.activities = feedparser.parse(
|
||||
generator.settings['GITHUB_ACTIVITY_FEED'])
|
||||
except ImportError:
|
||||
raise Exception("Unable to find feedparser")
|
||||
import feedparser
|
||||
self.activities = feedparser.parse(
|
||||
generator.settings['GITHUB_ACTIVITY_FEED'])
|
||||
|
||||
def fetch(self):
|
||||
"""
|
||||
@@ -63,5 +63,9 @@ def register():
|
||||
"""
|
||||
Plugin registration
|
||||
"""
|
||||
signals.article_generator_init.connect(feed_parser_initialization)
|
||||
signals.article_generate_context.connect(fetch_github_activity)
|
||||
try:
|
||||
signals.article_generator_init.connect(feed_parser_initialization)
|
||||
signals.article_generate_context.connect(fetch_github_activity)
|
||||
except ImportError:
|
||||
logger.warning('`github_activity` failed to load dependency `feedparser`.'
|
||||
'`github_activity` plugin not loaded.')
|
||||
|
||||
@@ -9,12 +9,16 @@ Copyright (c) Talha Mansoor
|
||||
"""
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import logging
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
from pelican import signals
|
||||
import feedparser
|
||||
|
||||
|
||||
class GoodreadsActivity():
|
||||
def __init__(self, generator):
|
||||
import feedparser
|
||||
self.activities = feedparser.parse(
|
||||
generator.settings['GOODREADS_ACTIVITY_FEED'])
|
||||
|
||||
@@ -51,5 +55,9 @@ def initialize_feedparser(generator):
|
||||
|
||||
|
||||
def register():
|
||||
signals.article_generator_init.connect(initialize_feedparser)
|
||||
signals.article_generate_context.connect(fetch_goodreads_activity)
|
||||
try:
|
||||
signals.article_generator_init.connect(initialize_feedparser)
|
||||
signals.article_generate_context.connect(fetch_goodreads_activity)
|
||||
except ImportError:
|
||||
logger.warning('`goodreads_activity` failed to load dependency `feedparser`.'
|
||||
'`goodreads_activity` plugin not loaded.')
|
||||
|
||||
902
pytestdebug.log
@@ -1,902 +0,0 @@
|
||||
versions pytest-2.3.4, py-1.4.13, python-3.2.3.final.0
|
||||
cwd=/home/dturgut/src/pelican-plugins
|
||||
args=['--debug']
|
||||
|
||||
finish pytest_cmdline_parse --> <_pytest.config.Config object at 0x1b27390> [hook]
|
||||
pytest_cmdline_main {'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_plugin_registered {'manager': <_pytest.core.PluginManager object at 0x17cb410>, 'plugin': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_configure {'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
configured with mode set to 'rewrite' [assertion]
|
||||
pytest_plugin_registered {'manager': <_pytest.core.PluginManager object at 0x17cb410>, 'plugin': <_pytest.terminal.TerminalReporter object at 0x1c59390>} [hook]
|
||||
pytest_sessionstart {'session': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_plugin_registered {'manager': <_pytest.core.PluginManager object at 0x17cb410>, 'plugin': <_pytest.python.FixtureManager object at 0x1c59850>} [hook]
|
||||
pytest_report_header {'startdir': local('/home/dturgut/src/pelican-plugins'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
finish pytest_report_header --> [['using: pytest-2.3.4 pylib-1.4.13']] [hook]
|
||||
pytest_collection {'session': <Session 'pelican-plugins'>} [hook]
|
||||
perform_collect <Session 'pelican-plugins'> ['/home/dturgut/src/pelican-plugins'] [collection]
|
||||
pytest_collectstart {'collector': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_make_collect_report {'collector': <Session 'pelican-plugins'>} [hook]
|
||||
processing argument /home/dturgut/src/pelican-plugins [collection]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/related_posts'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/related_posts'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/random_article'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/random_article'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/latex'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/latex'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/.git'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/assets'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/summary'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/neighbors'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/neighbors'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/multi_part'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/multi_part'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/sitemap'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/sitemap'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/global_license'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/global_license'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/github_activity'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/github_activity'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gravatar'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/gravatar'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/.gitignore'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/.gitignore'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/.travis.yml'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/.travis.yml'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/Contributing.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/Contributing.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/LICENSE'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/LICENSE'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/Readme.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/Readme.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/pytestdebug.log'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/pytestdebug.log'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/assets/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/Readme.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/Readme.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/assets.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/assets.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/assets.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/assets.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/test_assets.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/test_assets.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_pycollect_makemodule {'path': local('/home/dturgut/src/pelican-plugins/assets/test_assets.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
finish pytest_pycollect_makemodule --> <Module 'assets/test_assets.py'> [hook]
|
||||
finish pytest_collect_file --> [<Module 'assets/test_assets.py'>] [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/test_assets.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/test_assets.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/__pycache__/assets.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/__pycache__/assets.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/__pycache__/test_assets.cpython-27-PYTEST.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/__pycache__/test_assets.cpython-27-PYTEST.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/__pycache__/test_assets.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/__pycache__/test_assets.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data/templates'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data/templates'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data/static'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data/static'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data/static/css'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data/static/css'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data/static/css/style.min.css'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data/static/css/style.min.css'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data/static/css/style.scss'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data/static/css/style.scss'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data/templates/base.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/assets/test_data/templates/base.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/github_activity/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/github_activity/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/github_activity/Readme.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/github_activity/Readme.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/github_activity/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/github_activity/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/github_activity/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/github_activity/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/github_activity/github_activity.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/github_activity/github_activity.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/github_activity/github_activity.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/github_activity/github_activity.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/github_activity/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/github_activity/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/github_activity/__pycache__/github_activity.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/github_activity/__pycache__/github_activity.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/global_license/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/global_license/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/global_license/Readme.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/global_license/Readme.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/global_license/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/global_license/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/global_license/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/global_license/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/global_license/global_license.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/global_license/global_license.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/global_license/global_license.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/global_license/global_license.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/global_license/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/global_license/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/global_license/__pycache__/global_license.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/global_license/__pycache__/global_license.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/Readme.md'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/Readme.md'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/goodreads_activity.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/goodreads_activity.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/goodreads_activity.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/goodreads_activity.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/__pycache__/goodreads_activity.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/goodreads_activity/__pycache__/goodreads_activity.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gravatar/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/gravatar/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gravatar/Readme.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gravatar/Readme.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gravatar/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gravatar/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gravatar/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gravatar/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gravatar/gravatar.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gravatar/gravatar.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gravatar/gravatar.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gravatar/gravatar.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gravatar/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gravatar/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gravatar/__pycache__/gravatar.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gravatar/__pycache__/gravatar.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/Readme.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/Readme.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/gzip_cache.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/gzip_cache.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/gzip_cache.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/gzip_cache.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/test_gzip_cache.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/test_gzip_cache.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_pycollect_makemodule {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/test_gzip_cache.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
finish pytest_pycollect_makemodule --> <Module 'gzip_cache/test_gzip_cache.py'> [hook]
|
||||
finish pytest_collect_file --> [<Module 'gzip_cache/test_gzip_cache.py'>] [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/test_gzip_cache.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/test_gzip_cache.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__pycache__/gzip_cache.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__pycache__/gzip_cache.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__pycache__/test_gzip_cache.cpython-27-PYTEST.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__pycache__/test_gzip_cache.cpython-27-PYTEST.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__pycache__/test_gzip_cache.cpython-32-PYTEST.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__pycache__/test_gzip_cache.cpython-32-PYTEST.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__pycache__/test_gzip_cache.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/gzip_cache/__pycache__/test_gzip_cache.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/Readme.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/Readme.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/html_rst_directive.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/html_rst_directive.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/html_rst_directive.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/html_rst_directive.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/__pycache__/html_rst_directive.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/html_rst_directive/__pycache__/html_rst_directive.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/latex/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/latex/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/latex/Readme.md'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/latex/Readme.md'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/latex/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/latex/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/latex/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/latex/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/latex/latex.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/latex/latex.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/latex/latex.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/latex/latex.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/latex/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/latex/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/latex/__pycache__/latex.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/latex/__pycache__/latex.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/multi_part/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/multi_part/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/multi_part/Readme.md'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/multi_part/Readme.md'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/multi_part/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/multi_part/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/multi_part/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/multi_part/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/multi_part/multi_part.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/multi_part/multi_part.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/multi_part/multi_part.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/multi_part/multi_part.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/multi_part/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/multi_part/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/multi_part/__pycache__/multi_part.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/multi_part/__pycache__/multi_part.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/neighbors/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/neighbors/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/neighbors/Readme.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/neighbors/Readme.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/neighbors/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/neighbors/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/neighbors/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/neighbors/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/neighbors/neighbors.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/neighbors/neighbors.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/neighbors/neighbors.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/neighbors/neighbors.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/neighbors/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/neighbors/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/neighbors/__pycache__/neighbors.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/neighbors/__pycache__/neighbors.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/random_article/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/random_article/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/random_article/Readme.md'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/random_article/Readme.md'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/random_article/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/random_article/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/random_article/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/random_article/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/random_article/random_article.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/random_article/random_article.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/random_article/random_article.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/random_article/random_article.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/random_article/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/random_article/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/random_article/__pycache__/random_article.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/random_article/__pycache__/random_article.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/related_posts/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/related_posts/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/related_posts/Readme.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/related_posts/Readme.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/related_posts/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/related_posts/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/related_posts/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/related_posts/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/related_posts/related_posts.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/related_posts/related_posts.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/related_posts/related_posts.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/related_posts/related_posts.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/related_posts/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/related_posts/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/related_posts/__pycache__/related_posts.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/related_posts/__pycache__/related_posts.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/sitemap/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/sitemap/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/sitemap/Readme.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/sitemap/Readme.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/sitemap/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/sitemap/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/sitemap/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/sitemap/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/sitemap/sitemap.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/sitemap/sitemap.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/sitemap/sitemap.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/sitemap/sitemap.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/sitemap/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/sitemap/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/sitemap/__pycache__/sitemap.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/sitemap/__pycache__/sitemap.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary/__pycache__'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/summary/__pycache__'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary/Readme.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/summary/Readme.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary/__init__.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/summary/__init__.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary/__init__.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/summary/__init__.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary/summary.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/summary/summary.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary/summary.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/summary/summary.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary/test_summary.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/summary/test_summary.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_pycollect_makemodule {'path': local('/home/dturgut/src/pelican-plugins/summary/test_summary.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
finish pytest_pycollect_makemodule --> <Module 'summary/test_summary.py'> [hook]
|
||||
finish pytest_collect_file --> [<Module 'summary/test_summary.py'>] [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary/test_summary.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/summary/test_summary.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary/__pycache__/__init__.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/summary/__pycache__/__init__.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary/__pycache__/summary.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/summary/__pycache__/summary.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary/__pycache__/test_summary.cpython-27-PYTEST.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/summary/__pycache__/test_summary.cpython-27-PYTEST.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary/__pycache__/test_summary.cpython-32-PYTEST.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/summary/__pycache__/test_summary.cpython-32-PYTEST.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/summary/__pycache__/test_summary.cpython-32.pyc'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/summary/__pycache__/test_summary.cpython-32.pyc'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/themes'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/content'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/Readme.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/Readme.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/pelican.conf.py'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/pelican.conf.py'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pages'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pages'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pictures'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pictures'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/cat1'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/content/cat1'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/extra'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/content/extra'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/2012-11-30_filename-metadata.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/2012-11-30_filename-metadata.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/another_super_article-fr.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/another_super_article-fr.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/another_super_article.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/another_super_article.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/article2-fr.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/article2-fr.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/article2.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/article2.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/draft_article.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/draft_article.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/super_article.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/super_article.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/unbelievable.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/unbelievable.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/unwanted_file'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/unwanted_file'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/cat1/article1.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/cat1/article1.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/cat1/article2.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/cat1/article2.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/cat1/article3.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/cat1/article3.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/cat1/markdown-article.md'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/cat1/markdown-article.md'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/extra/robots.txt'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/extra/robots.txt'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pages/hidden_page.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pages/hidden_page.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pages/jinja2_template.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pages/jinja2_template.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pages/override_url_saveas.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pages/override_url_saveas.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pages/test_page.rst'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pages/test_page.rst'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pictures/Fat_Cat.jpg'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pictures/Fat_Cat.jpg'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pictures/Sushi.jpg'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pictures/Sushi.jpg'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pictures/Sushi_Macro.jpg'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/content/pictures/Sushi_Macro.jpg'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/css'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/css'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/css/main.css'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/css/main.css'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/css/pygment.css'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/css/pygment.css'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/css/reset.css'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/css/reset.css'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/css/typogrify.css'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/css/typogrify.css'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/css/wide.css'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/css/wide.css'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/aboutme.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/aboutme.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/bitbucket.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/bitbucket.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/delicious.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/delicious.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/facebook.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/facebook.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/github.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/github.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/gitorious.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/gitorious.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/gittip.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/gittip.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/google-groups.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/google-groups.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/google-plus.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/google-plus.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/hackernews.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/hackernews.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/lastfm.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/lastfm.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/linkedin.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/linkedin.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/reddit.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/reddit.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/rss.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/rss.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/slideshare.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/slideshare.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/speakerdeck.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/speakerdeck.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/twitter.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/twitter.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/vimeo.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/vimeo.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/youtube.png'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/static/images/icons/youtube.png'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/analytics.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/analytics.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/archives.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/archives.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/article.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/article.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/article_infos.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/article_infos.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/author.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/author.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/authors.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/authors.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/base.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/base.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/category.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/category.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/comments.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/comments.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/disqus_script.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/disqus_script.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/github.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/github.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/index.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/index.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/page.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/page.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/piwik.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/piwik.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/tag.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/tag.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/taglist.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/taglist.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/translations.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/translations.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/twitter.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/notmyidea/templates/twitter.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_directory {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/archives.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/archives.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/article.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/article.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/author.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/author.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/base.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/base.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/categories.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/categories.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/category.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/category.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/gosquared.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/gosquared.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/index.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/index.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/page.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/page.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/pagination.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/pagination.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/tag.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/tag.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/tags.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/tags.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_ignore_collect {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/translations.html'), 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collect_file {'path': local('/home/dturgut/src/pelican-plugins/tests/themes/simple/templates/translations.html'), 'parent': <Session 'pelican-plugins'>} [hook]
|
||||
finish pytest_make_collect_report --> <CollectReport '.' lenresult=3 outcome='passed'> [hook]
|
||||
pytest_collectreport {'report': <CollectReport '.' lenresult=3 outcome='passed'>} [hook]
|
||||
genitems <Module 'assets/test_assets.py'> [collection]
|
||||
pytest_collectstart {'collector': <Module 'assets/test_assets.py'>} [hook]
|
||||
pytest_make_collect_report {'collector': <Module 'assets/test_assets.py'>} [hook]
|
||||
find_module called for: assets [assertion]
|
||||
find_module called for: assets.assets [assertion]
|
||||
find_module called for: logging [assertion]
|
||||
find_module called for: threading [assertion]
|
||||
find_module called for: pelican [assertion]
|
||||
find_module called for: six [assertion]
|
||||
find_module called for: argparse [assertion]
|
||||
find_module called for: pelican.signals [assertion]
|
||||
find_module called for: blinker [assertion]
|
||||
find_module called for: blinker.base [assertion]
|
||||
find_module called for: blinker._utilities [assertion]
|
||||
find_module called for: blinker._saferef [assertion]
|
||||
find_module called for: contextlib [assertion]
|
||||
find_module called for: pelican.generators [assertion]
|
||||
find_module called for: datetime [assertion]
|
||||
find_module called for: _datetime [assertion]
|
||||
find_module called for: shutil [assertion]
|
||||
find_module called for: tarfile [assertion]
|
||||
find_module called for: grp [assertion]
|
||||
find_module called for: pwd [assertion]
|
||||
find_module called for: bz2 [assertion]
|
||||
find_module called for: jinja2 [assertion]
|
||||
find_module called for: jinja2.environment [assertion]
|
||||
find_module called for: jinja2.nodes [assertion]
|
||||
find_module called for: jinja2.utils [assertion]
|
||||
find_module called for: markupsafe [assertion]
|
||||
find_module called for: jinja2._markupsafe [assertion]
|
||||
find_module called for: jinja2._markupsafe._speedups [assertion]
|
||||
find_module called for: jinja2._markupsafe._native [assertion]
|
||||
find_module called for: jinja2.defaults [assertion]
|
||||
find_module called for: jinja2.filters [assertion]
|
||||
find_module called for: jinja2.runtime [assertion]
|
||||
find_module called for: jinja2.exceptions [assertion]
|
||||
find_module called for: jinja2.tests [assertion]
|
||||
find_module called for: jinja2.lexer [assertion]
|
||||
find_module called for: unicodedata [assertion]
|
||||
find_module called for: jinja2._stringdefs [assertion]
|
||||
find_module called for: jinja2.parser [assertion]
|
||||
find_module called for: jinja2.optimizer [assertion]
|
||||
find_module called for: jinja2.visitor [assertion]
|
||||
find_module called for: jinja2.compiler [assertion]
|
||||
find_module called for: jinja2.loaders [assertion]
|
||||
find_module called for: jinja2.bccache [assertion]
|
||||
find_module called for: pickle [assertion]
|
||||
find_module called for: _compat_pickle [assertion]
|
||||
find_module called for: org [assertion]
|
||||
find_module called for: _pickle [assertion]
|
||||
find_module called for: pelican.contents [assertion]
|
||||
find_module called for: pelican.settings [assertion]
|
||||
find_module called for: pelican.utils [assertion]
|
||||
find_module called for: pytz [assertion]
|
||||
find_module called for: UserDict [assertion]
|
||||
find_module called for: pytz.exceptions [assertion]
|
||||
find_module called for: pytz.tzinfo [assertion]
|
||||
find_module called for: pytz.tzfile [assertion]
|
||||
find_module called for: cStringIO [assertion]
|
||||
find_module called for: encodings.ascii [assertion]
|
||||
find_module called for: pelican.urlwrappers [assertion]
|
||||
find_module called for: pelican.readers [assertion]
|
||||
find_module called for: docutils [assertion]
|
||||
find_module called for: docutils.core [assertion]
|
||||
find_module called for: docutils.frontend [assertion]
|
||||
find_module called for: configparser [assertion]
|
||||
find_module called for: docutils.utils [assertion]
|
||||
find_module called for: docutils.nodes [assertion]
|
||||
find_module called for: docutils.io [assertion]
|
||||
find_module called for: docutils._compat [assertion]
|
||||
find_module called for: docutils.utils.error_reporting [assertion]
|
||||
find_module called for: docutils.readers [assertion]
|
||||
find_module called for: docutils.parsers [assertion]
|
||||
find_module called for: docutils.transforms [assertion]
|
||||
find_module called for: docutils.languages [assertion]
|
||||
find_module called for: docutils.transforms.universal [assertion]
|
||||
find_module called for: docutils.utils.smartquotes [assertion]
|
||||
find_module called for: docutils.writers [assertion]
|
||||
find_module called for: docutils.readers.doctree [assertion]
|
||||
find_module called for: docutils.writers.html4css1 [assertion]
|
||||
find_module called for: urllib.request [assertion]
|
||||
find_module called for: base64 [assertion]
|
||||
find_module called for: binascii [assertion]
|
||||
find_module called for: email [assertion]
|
||||
find_module called for: http [assertion]
|
||||
find_module called for: http.client [assertion]
|
||||
find_module called for: email.parser [assertion]
|
||||
find_module called for: email.feedparser [assertion]
|
||||
find_module called for: email.errors [assertion]
|
||||
find_module called for: email.message [assertion]
|
||||
find_module called for: uu [assertion]
|
||||
find_module called for: email.utils [assertion]
|
||||
find_module called for: socket [assertion]
|
||||
find_module called for: _socket [assertion]
|
||||
find_module called for: email._parseaddr [assertion]
|
||||
find_module called for: calendar [assertion]
|
||||
find_module called for: quopri [assertion]
|
||||
find_module called for: email.encoders [assertion]
|
||||
find_module called for: email.header [assertion]
|
||||
find_module called for: email.quoprimime [assertion]
|
||||
find_module called for: email.base64mime [assertion]
|
||||
find_module called for: email.charset [assertion]
|
||||
find_module called for: email.iterators [assertion]
|
||||
find_module called for: ssl [assertion]
|
||||
find_module called for: _ssl [assertion]
|
||||
find_module called for: urllib.error [assertion]
|
||||
find_module called for: urllib.response [assertion]
|
||||
find_module called for: PIL [assertion]
|
||||
find_module called for: Image [assertion]
|
||||
find_module called for: docutils.transforms.writer_aux [assertion]
|
||||
find_module called for: docutils.utils.math [assertion]
|
||||
find_module called for: docutils.utils.math.unichar2tex [assertion]
|
||||
find_module called for: docutils.utils.math.latex2mathml [assertion]
|
||||
find_module called for: docutils.utils.math.tex2unichar [assertion]
|
||||
find_module called for: docutils.utils.math.math2html [assertion]
|
||||
find_module called for: pelican.rstdirectives [assertion]
|
||||
find_module called for: docutils.parsers.rst [assertion]
|
||||
find_module called for: docutils.statemachine [assertion]
|
||||
find_module called for: docutils.parsers.rst.states [assertion]
|
||||
find_module called for: roman [assertion]
|
||||
find_module called for: docutils.utils.roman [assertion]
|
||||
find_module called for: docutils.parsers.rst.directives [assertion]
|
||||
find_module called for: docutils.parsers.rst.languages [assertion]
|
||||
find_module called for: docutils.parsers.rst.languages.en [assertion]
|
||||
find_module called for: docutils.parsers.rst.tableparser [assertion]
|
||||
find_module called for: docutils.parsers.rst.roles [assertion]
|
||||
find_module called for: docutils.utils.code_analyzer [assertion]
|
||||
find_module called for: pygments [assertion]
|
||||
find_module called for: pygments.util [assertion]
|
||||
find_module called for: pygments.lexers [assertion]
|
||||
find_module called for: pygments.lexers._mapping [assertion]
|
||||
find_module called for: pygments.plugin [assertion]
|
||||
find_module called for: pygments.formatters [assertion]
|
||||
find_module called for: pygments.formatters._mapping [assertion]
|
||||
find_module called for: pygments.formatters.bbcode [assertion]
|
||||
find_module called for: pygments.formatter [assertion]
|
||||
find_module called for: pygments.styles [assertion]
|
||||
find_module called for: pygments.formatters.html [assertion]
|
||||
find_module called for: pygments.token [assertion]
|
||||
find_module called for: ctags [assertion]
|
||||
find_module called for: pygments.formatters.img [assertion]
|
||||
find_module called for: PIL [assertion]
|
||||
find_module called for: winreg [assertion]
|
||||
find_module called for: pygments.formatters.latex [assertion]
|
||||
find_module called for: pygments.formatters.other [assertion]
|
||||
find_module called for: pygments.console [assertion]
|
||||
find_module called for: pygments.formatters.rtf [assertion]
|
||||
find_module called for: pygments.formatters.svg [assertion]
|
||||
find_module called for: pygments.formatters.terminal [assertion]
|
||||
find_module called for: pygments.formatters.terminal256 [assertion]
|
||||
find_module called for: docutils.utils.punctuation_chars [assertion]
|
||||
find_module called for: docutils.utils.urischemes [assertion]
|
||||
find_module called for: pygments.lexers.special [assertion]
|
||||
find_module called for: pygments.lexer [assertion]
|
||||
find_module called for: pygments.filter [assertion]
|
||||
find_module called for: pygments.filters [assertion]
|
||||
find_module called for: pygments.styles.default [assertion]
|
||||
find_module called for: pygments.style [assertion]
|
||||
find_module called for: markdown [assertion]
|
||||
find_module called for: asciidocapi [assertion]
|
||||
find_module called for: cgi [assertion]
|
||||
find_module called for: html [assertion]
|
||||
find_module called for: html.parser [assertion]
|
||||
find_module called for: _markupbase [assertion]
|
||||
find_module called for: pelican.log [assertion]
|
||||
find_module called for: pelican.writers [assertion]
|
||||
find_module called for: feedgenerator [assertion]
|
||||
find_module called for: feedgenerator.django [assertion]
|
||||
find_module called for: feedgenerator.django.utils [assertion]
|
||||
find_module called for: feedgenerator.django.utils.feedgenerator [assertion]
|
||||
find_module called for: feedgenerator.django.utils.xmlutils [assertion]
|
||||
find_module called for: xml [assertion]
|
||||
find_module called for: xml.sax [assertion]
|
||||
find_module called for: xml.sax.xmlreader [assertion]
|
||||
find_module called for: xml.sax.handler [assertion]
|
||||
find_module called for: xml.sax._exceptions [assertion]
|
||||
find_module called for: xml.sax.saxutils [assertion]
|
||||
find_module called for: feedgenerator.django.utils.encoding [assertion]
|
||||
find_module called for: decimal [assertion]
|
||||
find_module called for: numbers [assertion]
|
||||
find_module called for: feedgenerator.django.utils.functional [assertion]
|
||||
find_module called for: feedgenerator.django.utils.six [assertion]
|
||||
find_module called for: feedgenerator.django.utils.datetime_safe [assertion]
|
||||
find_module called for: feedgenerator.django.utils.timezone [assertion]
|
||||
find_module called for: pelican.paginator [assertion]
|
||||
find_module called for: webassets [assertion]
|
||||
finish pytest_make_collect_report --> <CollectReport 'assets/test_assets.py' lenresult=0 outcome='failed'> [hook]
|
||||
pytest_collectreport {'report': <CollectReport 'assets/test_assets.py' lenresult=0 outcome='failed'>} [hook]
|
||||
genitems <Module 'gzip_cache/test_gzip_cache.py'> [collection]
|
||||
pytest_collectstart {'collector': <Module 'gzip_cache/test_gzip_cache.py'>} [hook]
|
||||
pytest_make_collect_report {'collector': <Module 'gzip_cache/test_gzip_cache.py'>} [hook]
|
||||
find_module called for: gzip_cache [assertion]
|
||||
find_module called for: gzip_cache.gzip_cache [assertion]
|
||||
find_module called for: gzip [assertion]
|
||||
find_module called for: zlib [assertion]
|
||||
find_module called for: gzip_cache.test_gzip_cache [assertion]
|
||||
matched test file '/home/dturgut/src/pelican-plugins/gzip_cache/test_gzip_cache.py' [assertion]
|
||||
found cached rewritten pyc for '/home/dturgut/src/pelican-plugins/gzip_cache/test_gzip_cache.py' [assertion]
|
||||
find_module called for: unittest [assertion]
|
||||
find_module called for: unittest.result [assertion]
|
||||
find_module called for: unittest.util [assertion]
|
||||
find_module called for: unittest.case [assertion]
|
||||
find_module called for: difflib [assertion]
|
||||
find_module called for: unittest.suite [assertion]
|
||||
find_module called for: unittest.loader [assertion]
|
||||
find_module called for: unittest.main [assertion]
|
||||
find_module called for: unittest.runner [assertion]
|
||||
find_module called for: unittest.signals [assertion]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'gzip_cache/test_gzip_cache.py'>, 'obj': <function contextmanager at 0x1deb848>, 'name': 'contextmanager'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'gzip_cache/test_gzip_cache.py'>, 'obj': <function mkdtemp at 0x1b0ed98>, 'name': 'mkdtemp'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'gzip_cache/test_gzip_cache.py'>, 'obj': <module 'gzip_cache' from '/home/dturgut/src/pelican-plugins/gzip_cache/__init__.py'>, 'name': 'gzip_cache'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'gzip_cache/test_gzip_cache.py'>, 'obj': <module 'os' from '/home/dturgut/.virtualenvs/pelican-plugins3.2/lib/python3.2/os.py'>, 'name': 'os'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'gzip_cache/test_gzip_cache.py'>, 'obj': <module 'tempfile' from '/home/dturgut/.virtualenvs/pelican-plugins3.2/lib/python3.2/tempfile.py'>, 'name': 'tempfile'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'gzip_cache/test_gzip_cache.py'>, 'obj': <function temporary_folder at 0x2d10ea8>, 'name': 'temporary_folder'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'gzip_cache/test_gzip_cache.py'>, 'obj': <class 'gzip_cache.test_gzip_cache.TestGzipCache'>, 'name': 'TestGzipCache'} [hook]
|
||||
finish pytest_pycollect_makeitem --> <UnitTestCase 'TestGzipCache'> [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'gzip_cache/test_gzip_cache.py'>, 'obj': <function rmtree at 0x1e63270>, 'name': 'rmtree'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'gzip_cache/test_gzip_cache.py'>, 'obj': <module 'unittest' from '/usr/lib/python3.2/unittest/__init__.py'>, 'name': 'unittest'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'gzip_cache/test_gzip_cache.py'>, 'obj': <module '_pytest.assertion.rewrite' from '/home/dturgut/.virtualenvs/pelican-plugins3.2/lib/python3.2/site-packages/_pytest/assertion/rewrite.py'>, 'name': '@pytest_ar'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'gzip_cache/test_gzip_cache.py'>, 'obj': <module 'builtins' (built-in)>, 'name': '@py_builtins'} [hook]
|
||||
finish pytest_make_collect_report --> <CollectReport 'gzip_cache/test_gzip_cache.py' lenresult=1 outcome='passed'> [hook]
|
||||
genitems <UnitTestCase 'TestGzipCache'> [collection]
|
||||
pytest_collectstart {'collector': <UnitTestCase 'TestGzipCache'>} [hook]
|
||||
pytest_make_collect_report {'collector': <UnitTestCase 'TestGzipCache'>} [hook]
|
||||
finish pytest_make_collect_report --> <CollectReport 'gzip_cache/test_gzip_cache.py::TestGzipCache' lenresult=2 outcome='passed'> [hook]
|
||||
genitems <TestCaseFunction 'test_creates_gzip_file'> [collection]
|
||||
pytest_itemcollected {'item': <TestCaseFunction 'test_creates_gzip_file'>} [hook]
|
||||
genitems <TestCaseFunction 'test_should_compress'> [collection]
|
||||
pytest_itemcollected {'item': <TestCaseFunction 'test_should_compress'>} [hook]
|
||||
pytest_collectreport {'report': <CollectReport 'gzip_cache/test_gzip_cache.py::TestGzipCache' lenresult=2 outcome='passed'>} [hook]
|
||||
pytest_collectreport {'report': <CollectReport 'gzip_cache/test_gzip_cache.py' lenresult=1 outcome='passed'>} [hook]
|
||||
genitems <Module 'summary/test_summary.py'> [collection]
|
||||
pytest_collectstart {'collector': <Module 'summary/test_summary.py'>} [hook]
|
||||
pytest_make_collect_report {'collector': <Module 'summary/test_summary.py'>} [hook]
|
||||
find_module called for: summary [assertion]
|
||||
find_module called for: summary.summary [assertion]
|
||||
find_module called for: summary.test_summary [assertion]
|
||||
matched test file '/home/dturgut/src/pelican-plugins/summary/test_summary.py' [assertion]
|
||||
found cached rewritten pyc for '/home/dturgut/src/pelican-plugins/summary/test_summary.py' [assertion]
|
||||
find_module called for: jinja2.constants [assertion]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'summary/test_summary.py'>, 'obj': 'Tortor vestibulum imperdiet sapien convallis facilisi bibendum tempus luctus, mollis elit netus nunc facilisi fermentum, eleifend magna purus nostra fusce,. Tempor felis parturient hymenaeos, porta iaculis sapien facilisis hac, leo fusce vitae nullam, ut tristique nisl in lacinia, diam cras eros nisl. Euismod elementum enim vehicula, libero leo hac turpis lobortis nascetur gravida, pellentesque lorem semper maecenas nam ornare. Euismod imperdiet ut ipsum orci, nam luctus dui pellentesque orci at, semper netus eu dui.', 'name': 'TEST_SUMMARY'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'summary/test_summary.py'>, 'obj': <module 'summary' from '/home/dturgut/src/pelican-plugins/summary/__init__.py'>, 'name': 'summary'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'summary/test_summary.py'>, 'obj': <class 'pelican.contents.Page'>, 'name': 'Page'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'summary/test_summary.py'>, 'obj': <function generate_lorem_ipsum at 0x1f001e8>, 'name': 'generate_lorem_ipsum'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'summary/test_summary.py'>, 'obj': <module 'unittest' from '/usr/lib/python3.2/unittest/__init__.py'>, 'name': 'unittest'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'summary/test_summary.py'>, 'obj': <module '_pytest.assertion.rewrite' from '/home/dturgut/.virtualenvs/pelican-plugins3.2/lib/python3.2/site-packages/_pytest/assertion/rewrite.py'>, 'name': '@pytest_ar'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'summary/test_summary.py'>, 'obj': <module 'builtins' (built-in)>, 'name': '@py_builtins'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'summary/test_summary.py'>, 'obj': '<p>Tellus dignissim ultricies pretium sapien ultrices, vel auctor at ullamcorper euismod a lacus, a orci semper accumsan, tincidunt. Lacinia felis malesuada feugiat, luctus lacus nostra dignissim dictum netus, primis gravida felis eleifend tempus. Lobortis suscipit proin facilisis interdum purus pharetra, consequat lorem egestas ipsum luctus nibh, faucibus est consectetuer enim, quam.</p>', 'name': 'TEST_CONTENT'} [hook]
|
||||
pytest_pycollect_makeitem {'collector': <Module 'summary/test_summary.py'>, 'obj': <class 'summary.test_summary.TestSummary'>, 'name': 'TestSummary'} [hook]
|
||||
finish pytest_pycollect_makeitem --> <UnitTestCase 'TestSummary'> [hook]
|
||||
finish pytest_make_collect_report --> <CollectReport 'summary/test_summary.py' lenresult=1 outcome='passed'> [hook]
|
||||
genitems <UnitTestCase 'TestSummary'> [collection]
|
||||
pytest_collectstart {'collector': <UnitTestCase 'TestSummary'>} [hook]
|
||||
pytest_make_collect_report {'collector': <UnitTestCase 'TestSummary'>} [hook]
|
||||
finish pytest_make_collect_report --> <CollectReport 'summary/test_summary.py::TestSummary' lenresult=3 outcome='passed'> [hook]
|
||||
genitems <TestCaseFunction 'test_begin_end_summary'> [collection]
|
||||
pytest_itemcollected {'item': <TestCaseFunction 'test_begin_end_summary'>} [hook]
|
||||
genitems <TestCaseFunction 'test_begin_summary'> [collection]
|
||||
pytest_itemcollected {'item': <TestCaseFunction 'test_begin_summary'>} [hook]
|
||||
genitems <TestCaseFunction 'test_end_summary'> [collection]
|
||||
pytest_itemcollected {'item': <TestCaseFunction 'test_end_summary'>} [hook]
|
||||
pytest_collectreport {'report': <CollectReport 'summary/test_summary.py::TestSummary' lenresult=3 outcome='passed'>} [hook]
|
||||
pytest_collectreport {'report': <CollectReport 'summary/test_summary.py' lenresult=1 outcome='passed'>} [hook]
|
||||
pytest_collection_modifyitems {'items': [<TestCaseFunction 'test_creates_gzip_file'>, <TestCaseFunction 'test_should_compress'>, <TestCaseFunction 'test_begin_end_summary'>, <TestCaseFunction 'test_begin_summary'>, <TestCaseFunction 'test_end_summary'>], 'session': <Session 'pelican-plugins'>, 'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
pytest_collection_finish {'session': <Session 'pelican-plugins'>} [hook]
|
||||
finish pytest_collection --> [<TestCaseFunction 'test_creates_gzip_file'>, <TestCaseFunction 'test_should_compress'>, <TestCaseFunction 'test_begin_end_summary'>, <TestCaseFunction 'test_begin_summary'>, <TestCaseFunction 'test_end_summary'>] [hook]
|
||||
pytest_runtestloop {'session': <Session 'pelican-plugins'>} [hook]
|
||||
pytest_runtest_protocol {'item': <TestCaseFunction 'test_creates_gzip_file'>, 'nextitem': <TestCaseFunction 'test_should_compress'>} [hook]
|
||||
pytest_runtest_logstart {'nodeid': 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_creates_gzip_file', 'location': ('gzip_cache/test_gzip_cache.py', 43, 'TestGzipCache.test_creates_gzip_file')} [hook]
|
||||
pytest_runtest_setup {'item': <TestCaseFunction 'test_creates_gzip_file'>} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_creates_gzip_file'>, 'call': <CallInfo when='setup' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_creates_gzip_file' when='setup' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_creates_gzip_file' when='setup' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_creates_gzip_file' when='setup' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('', '', '') [hook]
|
||||
pytest_runtest_call {'item': <TestCaseFunction 'test_creates_gzip_file'>} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_creates_gzip_file'>, 'call': <CallInfo when='call' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_creates_gzip_file' when='call' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_creates_gzip_file' when='call' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_creates_gzip_file' when='call' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('passed', '.', 'PASSED') [hook]
|
||||
pytest_runtest_teardown {'item': <TestCaseFunction 'test_creates_gzip_file'>, 'nextitem': <TestCaseFunction 'test_should_compress'>} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_creates_gzip_file'>, 'call': <CallInfo when='teardown' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_creates_gzip_file' when='teardown' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_creates_gzip_file' when='teardown' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_creates_gzip_file' when='teardown' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('', '', '') [hook]
|
||||
finish pytest_runtest_protocol --> True [hook]
|
||||
pytest_runtest_protocol {'item': <TestCaseFunction 'test_should_compress'>, 'nextitem': <TestCaseFunction 'test_begin_end_summary'>} [hook]
|
||||
pytest_runtest_logstart {'nodeid': 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_should_compress', 'location': ('gzip_cache/test_gzip_cache.py', 31, 'TestGzipCache.test_should_compress')} [hook]
|
||||
pytest_runtest_setup {'item': <TestCaseFunction 'test_should_compress'>} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_should_compress'>, 'call': <CallInfo when='setup' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_should_compress' when='setup' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_should_compress' when='setup' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_should_compress' when='setup' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('', '', '') [hook]
|
||||
pytest_runtest_call {'item': <TestCaseFunction 'test_should_compress'>} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_should_compress'>, 'call': <CallInfo when='call' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_should_compress' when='call' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_should_compress' when='call' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_should_compress' when='call' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('passed', '.', 'PASSED') [hook]
|
||||
pytest_runtest_teardown {'item': <TestCaseFunction 'test_should_compress'>, 'nextitem': <TestCaseFunction 'test_begin_end_summary'>} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_should_compress'>, 'call': <CallInfo when='teardown' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_should_compress' when='teardown' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_should_compress' when='teardown' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'gzip_cache/test_gzip_cache.py::TestGzipCache::test_should_compress' when='teardown' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('', '', '') [hook]
|
||||
finish pytest_runtest_protocol --> True [hook]
|
||||
pytest_runtest_protocol {'item': <TestCaseFunction 'test_begin_end_summary'>, 'nextitem': <TestCaseFunction 'test_begin_summary'>} [hook]
|
||||
pytest_runtest_logstart {'nodeid': 'summary/test_summary.py::TestSummary::test_begin_end_summary', 'location': ('summary/test_summary.py', 65, 'TestSummary.test_begin_end_summary')} [hook]
|
||||
pytest_runtest_setup {'item': <TestCaseFunction 'test_begin_end_summary'>} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_begin_end_summary'>, 'call': <CallInfo when='setup' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'summary/test_summary.py::TestSummary::test_begin_end_summary' when='setup' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'summary/test_summary.py::TestSummary::test_begin_end_summary' when='setup' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'summary/test_summary.py::TestSummary::test_begin_end_summary' when='setup' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('', '', '') [hook]
|
||||
pytest_runtest_call {'item': <TestCaseFunction 'test_begin_end_summary'>} [hook]
|
||||
find_module called for: jinja2._markupsafe._constants [assertion]
|
||||
find_module called for: unidecode [assertion]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_begin_end_summary'>, 'call': <CallInfo when='call' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'summary/test_summary.py::TestSummary::test_begin_end_summary' when='call' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'summary/test_summary.py::TestSummary::test_begin_end_summary' when='call' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'summary/test_summary.py::TestSummary::test_begin_end_summary' when='call' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('passed', '.', 'PASSED') [hook]
|
||||
pytest_runtest_teardown {'item': <TestCaseFunction 'test_begin_end_summary'>, 'nextitem': <TestCaseFunction 'test_begin_summary'>} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_begin_end_summary'>, 'call': <CallInfo when='teardown' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'summary/test_summary.py::TestSummary::test_begin_end_summary' when='teardown' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'summary/test_summary.py::TestSummary::test_begin_end_summary' when='teardown' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'summary/test_summary.py::TestSummary::test_begin_end_summary' when='teardown' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('', '', '') [hook]
|
||||
finish pytest_runtest_protocol --> True [hook]
|
||||
pytest_runtest_protocol {'item': <TestCaseFunction 'test_begin_summary'>, 'nextitem': <TestCaseFunction 'test_end_summary'>} [hook]
|
||||
pytest_runtest_logstart {'nodeid': 'summary/test_summary.py::TestSummary::test_begin_summary', 'location': ('summary/test_summary.py', 55, 'TestSummary.test_begin_summary')} [hook]
|
||||
pytest_runtest_setup {'item': <TestCaseFunction 'test_begin_summary'>} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_begin_summary'>, 'call': <CallInfo when='setup' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'summary/test_summary.py::TestSummary::test_begin_summary' when='setup' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'summary/test_summary.py::TestSummary::test_begin_summary' when='setup' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'summary/test_summary.py::TestSummary::test_begin_summary' when='setup' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('', '', '') [hook]
|
||||
pytest_runtest_call {'item': <TestCaseFunction 'test_begin_summary'>} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_begin_summary'>, 'call': <CallInfo when='call' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'summary/test_summary.py::TestSummary::test_begin_summary' when='call' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'summary/test_summary.py::TestSummary::test_begin_summary' when='call' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'summary/test_summary.py::TestSummary::test_begin_summary' when='call' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('passed', '.', 'PASSED') [hook]
|
||||
pytest_runtest_teardown {'item': <TestCaseFunction 'test_begin_summary'>, 'nextitem': <TestCaseFunction 'test_end_summary'>} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_begin_summary'>, 'call': <CallInfo when='teardown' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'summary/test_summary.py::TestSummary::test_begin_summary' when='teardown' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'summary/test_summary.py::TestSummary::test_begin_summary' when='teardown' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'summary/test_summary.py::TestSummary::test_begin_summary' when='teardown' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('', '', '') [hook]
|
||||
finish pytest_runtest_protocol --> True [hook]
|
||||
pytest_runtest_protocol {'item': <TestCaseFunction 'test_end_summary'>, 'nextitem': None} [hook]
|
||||
pytest_runtest_logstart {'nodeid': 'summary/test_summary.py::TestSummary::test_end_summary', 'location': ('summary/test_summary.py', 45, 'TestSummary.test_end_summary')} [hook]
|
||||
pytest_runtest_setup {'item': <TestCaseFunction 'test_end_summary'>} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_end_summary'>, 'call': <CallInfo when='setup' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'summary/test_summary.py::TestSummary::test_end_summary' when='setup' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'summary/test_summary.py::TestSummary::test_end_summary' when='setup' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'summary/test_summary.py::TestSummary::test_end_summary' when='setup' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('', '', '') [hook]
|
||||
pytest_runtest_call {'item': <TestCaseFunction 'test_end_summary'>} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_end_summary'>, 'call': <CallInfo when='call' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'summary/test_summary.py::TestSummary::test_end_summary' when='call' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'summary/test_summary.py::TestSummary::test_end_summary' when='call' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'summary/test_summary.py::TestSummary::test_end_summary' when='call' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('passed', '.', 'PASSED') [hook]
|
||||
pytest_runtest_teardown {'item': <TestCaseFunction 'test_end_summary'>, 'nextitem': None} [hook]
|
||||
pytest_runtest_makereport {'item': <TestCaseFunction 'test_end_summary'>, 'call': <CallInfo when='teardown' result: []>} [hook]
|
||||
finish pytest_runtest_makereport --> <TestReport 'summary/test_summary.py::TestSummary::test_end_summary' when='teardown' outcome='passed'> [hook]
|
||||
pytest_runtest_logreport {'report': <TestReport 'summary/test_summary.py::TestSummary::test_end_summary' when='teardown' outcome='passed'>} [hook]
|
||||
pytest_report_teststatus {'report': <TestReport 'summary/test_summary.py::TestSummary::test_end_summary' when='teardown' outcome='passed'>} [hook]
|
||||
finish pytest_report_teststatus --> ('', '', '') [hook]
|
||||
finish pytest_runtest_protocol --> True [hook]
|
||||
finish pytest_runtestloop --> True [hook]
|
||||
pytest_sessionfinish {'session': <Session 'pelican-plugins'>, 'exitstatus': 1} [hook]
|
||||
pytest_terminal_summary {'terminalreporter': <_pytest.terminal.TerminalReporter object at 0x1c59390>} [hook]
|
||||
pytest_unconfigure {'config': <_pytest.config.Config object at 0x1b27390>} [hook]
|
||||
finish [config:tmpdir]
|
||||
|
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 61 KiB |
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
|
Before Width: | Height: | Size: 751 B After Width: | Height: | Size: 751 B |
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
|
Before Width: | Height: | Size: 958 B After Width: | Height: | Size: 958 B |
|
Before Width: | Height: | Size: 202 B After Width: | Height: | Size: 202 B |
|
Before Width: | Height: | Size: 346 B After Width: | Height: | Size: 346 B |
|
Before Width: | Height: | Size: 227 B After Width: | Height: | Size: 227 B |
|
Before Width: | Height: | Size: 487 B After Width: | Height: | Size: 487 B |
|
Before Width: | Height: | Size: 803 B After Width: | Height: | Size: 803 B |
|
Before Width: | Height: | Size: 527 B After Width: | Height: | Size: 527 B |
|
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
|
Before Width: | Height: | Size: 975 B After Width: | Height: | Size: 975 B |
|
Before Width: | Height: | Size: 896 B After Width: | Height: | Size: 896 B |
|
Before Width: | Height: | Size: 693 B After Width: | Height: | Size: 693 B |
|
Before Width: | Height: | Size: 879 B After Width: | Height: | Size: 879 B |
|
Before Width: | Height: | Size: 535 B After Width: | Height: | Size: 535 B |
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
|
Before Width: | Height: | Size: 830 B After Width: | Height: | Size: 830 B |
|
Before Width: | Height: | Size: 544 B After Width: | Height: | Size: 544 B |
|
Before Width: | Height: | Size: 458 B After Width: | Height: | Size: 458 B |