mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
This is slightly cleaner than how we're doing this at the moment. Signed-off-by: Stephen Finucane <stephen@that.guru>
29 lines
627 B
Python
29 lines
627 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
pytest config for sphinx/tests
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
:copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS.
|
|
:license: BSD, see LICENSE for details.
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
|
|
import pytest
|
|
from sphinx.testing.path import path
|
|
|
|
pytest_plugins = 'sphinx.testing.fixtures'
|
|
|
|
# Exclude 'roots' dirs for pytest test collector
|
|
collect_ignore = ['roots']
|
|
|
|
# Disable Python version-specific
|
|
if sys.version_info < (3, 5):
|
|
collect_ignore += ['py35']
|
|
|
|
|
|
@pytest.fixture(scope='session')
|
|
def rootdir():
|
|
return path(os.path.dirname(__file__) or '.').abspath() / 'roots'
|