Browse Source

just add encoding header to all test files "# -*- coding: utf-8 -*-"

master
heck 5 years ago
parent
commit
5963723853
  1. 1
      tests/__init__.py
  2. 1
      tests/conftest.py
  3. 1
      tests/constants.py
  4. 1
      tests/test_identity.py
  5. 1
      tests/test_message.py
  6. 1
      tests/test_pep.py

1
tests/__init__.py

@ -0,0 +1 @@
# -*- coding: utf-8 -*-

1
tests/conftest.py

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""pytest configuration for the unit tests."""
import os

1
tests/constants.py

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""Constants for unit tests."""

1
tests/test_identity.py

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""Identity unit tests."""
import os

1
tests/test_message.py

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""Message unit tests."""
from . import constants

1
tests/test_pep.py

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""Unit test for pEp package, not for subpackages or modules."""

Loading…
Cancel
Save