We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d108e55 commit 224d26cCopy full SHA for 224d26c
1 file changed
allure-pytest/setup.py
@@ -1,18 +1,5 @@
1
import os
2
-import sys
3
from setuptools import setup
4
-from pkg_resources import require, DistributionNotFound, VersionConflict
5
-
6
-try:
7
- require("pytest-allure-adaptor")
8
- print("""
9
- You have pytest-allure-adaptor installed.
10
- You need to remove pytest-allure-adaptor from your site-packages
11
- before installing allure-pytest, or conflicts may result.
12
- """)
13
- sys.exit()
14
-except (DistributionNotFound, VersionConflict):
15
- pass
16
17
PACKAGE = "allure-pytest"
18
0 commit comments