Skip to content

Commit 9edd6c4

Browse files
committed
chore: new module for py3 specific testing
1 parent e10dd24 commit 9edd6c4

3 files changed

Lines changed: 27 additions & 1 deletion

File tree

src/appier/test/asgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@
3636
# module (appier._asgi_test) outside the test package to avoid discovery
3737
# by setuptools' test loader on older Python versions
3838
if sys.version_info[0] >= 3 and sys.version_info[1] >= 5:
39-
from appier._asgi_test import ASGITest
39+
from appier.test_py3._asgi_test import ASGITest

src/appier/test_py3/__init__.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/usr/bin/python
2+
# -*- coding: utf-8 -*-
3+
4+
# Hive Appier Framework
5+
# Copyright (c) 2008-2024 Hive Solutions Lda.
6+
#
7+
# This file is part of Hive Appier Framework.
8+
#
9+
# Hive Appier Framework is free software: you can redistribute it and/or modify
10+
# it under the terms of the Apache License as published by the Apache
11+
# Foundation, either version 2.0 of the License, or (at your option) any
12+
# later version.
13+
#
14+
# Hive Appier Framework is distributed in the hope that it will be useful,
15+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
# Apache License for more details.
18+
#
19+
# You should have received a copy of the Apache License along with
20+
# Hive Appier Framework. If not, see <http://www.apache.org/licenses/>.
21+
22+
__copyright__ = "Copyright (c) 2008-2024 Hive Solutions Lda."
23+
""" The copyright for the module """
24+
25+
__license__ = "Apache License, Version 2.0"
26+
""" The license for the module """

0 commit comments

Comments
 (0)