File: conftest.py

package info (click to toggle)
pyshacl 0.30.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,628 kB
  • sloc: python: 17,623; makefile: 81; javascript: 78; sh: 50
file content (10 lines) | stat: -rw-r--r-- 178 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
import pytest
from pyshacl import extras


def pytest_runtest_setup(item):
    extras.dev_mode = True


def pytest_runtest_teardown(item, call=None):
    extras.dev_mode = False