File tree Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Expand file tree Collapse file tree 3 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 1+ include MANIFEST.in
2+ include *.md
Original file line number Diff line number Diff line change @@ -8,10 +8,14 @@ pip install pytest-reportportal
88```
99
1010### Prepare the config file pytest.ini in root dir of tests.
11- Content of the pytest.ini file:
11+ The pytest.ini file should have next mandatory fiilds:
12+
13+ - rp_uuid - number could be found in the User profile section
14+ - rp_project - name of project in Report potal
15+ - rp_endpoint - address of Report Portal Server
16+
1217```
1318[pytest]
14- mandatory fields
1519rp_uuid = uid reportportal
1620rp_endpoint = http://ip:port
1721rp_project = Project of ReportPortal
Original file line number Diff line number Diff line change 1+ import os
12from setuptools import setup
23
3- with open ("README.md" ) as readme_file :
4- readme = readme_file .read ()
54
6- version = "0.2.1"
5+ def read_file (fname ):
6+ return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
7+
8+
9+ version = "0.2.3"
710requirements = [
811 "reportportal-client>=2.5.4" ,
912 "pytest>=3.0.7" ,
1316 name = "pytest-reportportal" ,
1417 version = version ,
1518 description = "Agent for Reproting results of tests to the Report Portal server" ,
16- long_description = readme + "\n \n " ,
19+ long_description = read_file ( "README.md" ) + "\n \n " ,
1720 author = "Pavel Papou" ,
18211922 url = "https://github.com/reportportal/agent-python-pytest" ,
2528 "Framework :: Pytest" ,
2629 "Programming Language :: Python :: 2.7" ,
2730 "Programming Language :: Python :: 3.0" ,
28- "Programming Language :: Python :: 3.3"
31+ "Programming Language :: Python :: 3.3" ,
2932 "Programming Language :: Python :: 3.4" ,
3033 "Programming Language :: Python :: 3.5" ,
3134 "Programming Language :: Python :: 3.6"
You can’t perform that action at this time.
0 commit comments