summaryrefslogtreecommitdiff
path: root/conftest.py
blob: e442eb31690e8a99f5511cc92696b06a484a1298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
from __future__ import absolute_import

import os.path
import pytest
import sys

collect_ignore = [
    'tests/contrib/awslambda'
]

if sys.version_info[0] > 2:
    if sys.version_info[1] < 3:
        collect_ignore.append('tests/contrib/flask')
    if sys.version_info[1] == 2:
        collect_ignore.append('tests/handlers/logbook')

try:
    import gevent  # NOQA
except ImportError:
    collect_ignore.append('tests/transport/gevent')

try:
    import web  # NOQA
except ImportError:
    collect_ignore.append('tests/contrib/webpy')

try:
    import django  # NOQA
except ImportError:
    django = None
    collect_ignore.append('tests/contrib/django')

try:
    import Sanic  # NOQA
except ImportError:
    collect_ignore.append('tests/contrib/sanic')

try:
    import tastypie  # NOQA
except ImportError:
    collect_ignore.append('tests/contrib/django/test_tastypie.py')


use_djcelery = True
try:
    import djcelery  # NOQA
    # INSTALLED_APPS.append('djcelery')
except ImportError:
    use_djcelery = False


def pytest_runtest_teardown(item):
    if django:
        from raven.contrib.django.models import client
        client.events = []


@pytest.fixture
def project_root():
    return os.path.dirname(os.path.abspath(__file__))


@pytest.fixture
def mytest_model():

    from tests.contrib.django.models import MyTestModel
    return MyTestModel


@pytest.fixture(scope='function', autouse=False)
def user_instance(request, admin_user):
    request.cls.user = admin_user


@pytest.fixture(autouse=True)
def has_git_requirements(request, project_root):
    if request.node.get_marker('has_git_requirements'):
        if not os.path.exists(os.path.join(project_root, '.git', 'refs', 'heads', 'master')):
            pytest.skip('skipped test as project is not a git repo')