forked from pEp.foundation/pEpPythonAdapter
AGPL 3.0 headers
parent
9a3fb3918d
commit
a03295b495
|
@ -1 +1,3 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# This file is under GNU Affero General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# This file is under GNU Affero General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
"""pytest configuration for the unit tests."""
|
||||
|
||||
from .model import *
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# This file is under GNU Affero General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
"""Constants for unit tests."""
|
||||
DATADIR = "data"
|
||||
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
from . import utils
|
||||
# -*- coding: utf-8 -*-
|
||||
# This file is under GNU Affero General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
# from . import utils
|
||||
|
||||
import pytest
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
# This file is under GNU Affero General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
# from . import constants
|
||||
import pytest
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# This file is under GNU Affero General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
"""Identity unit tests."""
|
||||
|
||||
import pytest
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# This file is under GNU Affero General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
"""Message unit tests."""
|
||||
|
||||
from . import constants
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# This file is under GNU Affero General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
"""Unit test for pEp package, not for subpackages or modules."""
|
||||
|
||||
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
from . import constants
|
||||
# -*- coding: utf-8 -*-
|
||||
# This file is under GNU Affero General Public License 3.0
|
||||
# see LICENSE.txt
|
||||
|
||||
# from . import constants
|
||||
|
||||
import pathlib
|
||||
|
||||
|
|
Loading…
Reference in New Issue