integrify-core 1.0.0__py3-none-any.whl → 1.0.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- integrify/test.py +24 -0
- {integrify_core-1.0.0.dist-info → integrify_core-1.0.3.dist-info}/METADATA +2 -2
- {integrify_core-1.0.0.dist-info → integrify_core-1.0.3.dist-info}/RECORD +5 -5
- integrify/__init__.py +0 -0
- {integrify_core-1.0.0.dist-info → integrify_core-1.0.3.dist-info}/WHEEL +0 -0
- {integrify_core-1.0.0.dist-info → integrify_core-1.0.3.dist-info}/licenses/LICENSE +0 -0
integrify/test.py
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
import os
|
2
|
+
|
3
|
+
import pytest
|
4
|
+
|
5
|
+
|
6
|
+
def pytest_addoption(parser):
|
7
|
+
parser.addoption(
|
8
|
+
'--live',
|
9
|
+
action='store_true',
|
10
|
+
dest='liverun',
|
11
|
+
default=False,
|
12
|
+
help='enable live tests with tokens provided',
|
13
|
+
)
|
14
|
+
|
15
|
+
|
16
|
+
live = pytest.mark.skipif("not config.getoption('liverun')", allow_module_level=True)
|
17
|
+
"""Tests that need live environment to run"""
|
18
|
+
|
19
|
+
|
20
|
+
def requires_env(*env_keys):
|
21
|
+
return pytest.mark.skipif(
|
22
|
+
any(not os.getenv(ek, None) for ek in env_keys),
|
23
|
+
reason='Env variables are not set',
|
24
|
+
)
|
@@ -1,11 +1,11 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: integrify-core
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.3
|
4
4
|
Summary: Integrify API inteqrasiyalarını rahatlaşdıran bünovrə (core) kitabxanadır.
|
5
5
|
Project-URL: Homepage, https://integrify.mmzeynalli.dev/
|
6
6
|
Project-URL: Repository, https://github.com/Integrify-SDK/integrify-core-python
|
7
7
|
Project-URL: Documentation, https://integrify.mmzeynalli.dev/
|
8
|
-
Author-email: mmzeynalli <miradil.zeynalli@gmail.com
|
8
|
+
Author-email: mmzeynalli <miradil.zeynalli@gmail.com>
|
9
9
|
License: GPL-3.0-or-later
|
10
10
|
Classifier: Environment :: Web Environment
|
11
11
|
Classifier: Framework :: AsyncIO
|
@@ -1,9 +1,9 @@
|
|
1
|
-
integrify/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
1
|
integrify/api.py,sha256=iF9e3omki8OEaZOuHW3hanRnfnbvp832zXmETymZuE4,13603
|
3
2
|
integrify/logger.py,sha256=aPxF_Fiie4eZfLTkCWeeX0DHTf77A_vRvbPpmpP0dik,531
|
4
3
|
integrify/schemas.py,sha256=F5hSgwiF2TzbFVVqM2gxYFdyygjVAmCs6Teq6eGcuX4,2116
|
4
|
+
integrify/test.py,sha256=Y45rA47ERHPqUbcWglu-Yg-rWj0egsaB5aWl_ux6nJY,537
|
5
5
|
integrify/utils.py,sha256=YL8osk-RihgHIGeMayApQJ9bEwszYVa_CD0baZ1R20k,571
|
6
|
-
integrify_core-1.0.
|
7
|
-
integrify_core-1.0.
|
8
|
-
integrify_core-1.0.
|
9
|
-
integrify_core-1.0.
|
6
|
+
integrify_core-1.0.3.dist-info/METADATA,sha256=2MQkgsvBb6fA62Q_f9iIIYeLFBOt7rKiRM1QXSX_UP4,10123
|
7
|
+
integrify_core-1.0.3.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
8
|
+
integrify_core-1.0.3.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
9
|
+
integrify_core-1.0.3.dist-info/RECORD,,
|
integrify/__init__.py
DELETED
File without changes
|
File without changes
|
File without changes
|