mirror of
https://github.com/httprunner/httprunner.git
synced 2026-09-04 23:16:57 +08:00
remove requirements.txt
This commit is contained in:
+1
-1
@@ -8,8 +8,8 @@ python:
|
|||||||
install:
|
install:
|
||||||
- pip install coverage
|
- pip install coverage
|
||||||
- pip install coveralls
|
- pip install coveralls
|
||||||
- pip install -r requirements.txt
|
|
||||||
- pip install flask
|
- pip install flask
|
||||||
|
- python setup.py install
|
||||||
script:
|
script:
|
||||||
- coverage run --source=httprunner -m unittest discover
|
- coverage run --source=httprunner -m unittest discover
|
||||||
after_success:
|
after_success:
|
||||||
|
|||||||
+1
-2
@@ -1,2 +1 @@
|
|||||||
include README.rst
|
include README.rst
|
||||||
include requirements.txt
|
|
||||||
+1
-1
@@ -3,7 +3,7 @@
|
|||||||
To develop or debug `HttpRunner`, you can install relevant requirements and use `main-hrun.py` or `main-locust.py` as entrances.
|
To develop or debug `HttpRunner`, you can install relevant requirements and use `main-hrun.py` or `main-locust.py` as entrances.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ pip install -r requirements.txt
|
$ python setup.py install
|
||||||
$ python main-hrun -h
|
$ python main-hrun -h
|
||||||
$ python main-locust -h
|
$ python main-locust -h
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
requests
|
|
||||||
PyYAML
|
|
||||||
PyUnitReport
|
|
||||||
har2case
|
|
||||||
colorama
|
|
||||||
colorlog
|
|
||||||
@@ -7,7 +7,14 @@ from setuptools import find_packages, setup
|
|||||||
with io.open("README.rst", encoding='utf-8') as f:
|
with io.open("README.rst", encoding='utf-8') as f:
|
||||||
long_description = f.read()
|
long_description = f.read()
|
||||||
|
|
||||||
install_requires = open("requirements.txt").readlines()
|
install_requires = [
|
||||||
|
"requests",
|
||||||
|
"PyYAML",
|
||||||
|
"PyUnitReport",
|
||||||
|
"har2case",
|
||||||
|
"colorama",
|
||||||
|
"colorlog"
|
||||||
|
]
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='HttpRunner',
|
name='HttpRunner',
|
||||||
|
|||||||
Reference in New Issue
Block a user