File: conftest.py

package info (click to toggle)
python-cartopy 0.25.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,152 kB
  • sloc: python: 16,526; makefile: 159; javascript: 66
file content (36 lines) | stat: -rw-r--r-- 1,025 bytes parent folder | download | duplicates (2)
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
# Copyright Crown and Cartopy Contributors
#
# This file is part of Cartopy and is released under the BSD 3-clause license.
# See LICENSE in the root of the repository for full licensing details.
import pytest


_HAS_PYKDTREE = True
_HAS_SCIPY = True

try:
    import pykdtree  # noqa: F401
except ImportError:
    _HAS_PYKDTREE = False

try:
    import scipy  # noqa: F401
except ImportError:
    _HAS_SCIPY = False

requires_scipy = pytest.mark.skipif(
    not _HAS_SCIPY,
    reason="scipy is required")
requires_pykdtree = pytest.mark.skipif(
    not _HAS_PYKDTREE,
    reason="pykdtree is required")
_HAS_PYKDTREE_OR_SCIPY = _HAS_PYKDTREE or _HAS_SCIPY


def pytest_configure(config):
    # Register additional markers.
    config.addinivalue_line('markers',
                            'natural_earth: mark tests that use Natural Earth '
                            'data, and the network, if not cached.')
    config.addinivalue_line('markers',
                            'network: mark tests that use the network.')