Skip to content

Commit

Permalink
Added scripts to run the benchmark from the paper
Browse files Browse the repository at this point in the history
  • Loading branch information
AryazE authored Dec 9, 2022
1 parent 8f7cc94 commit 7cccb42
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions doc/benchmark.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
For all projects first:
```
pip install pytest pytest-xdist
```
Pandas:
```
pip install numpy pytz Cython hypothesis
python setup.py install
bash test_fast.sh
```
Django:
```
pip install .
pip install -r tests/requirements./py3.txt
pytest
```
Keras:
```
pip install -r requirements.txt
cd keras
python runall_tests.py
```
Requests:
```
pytest
```
Rich:
```
pip install pygments commonmark
pytest
```
Scikit-learn:
```
pip install -r requirements.txt
python setup.py install
pytest --showlocals -v sklearn --durations=20
```
Scrapy:
```
pip install twisted lxml parsel w3lib cryptography itemadapter pydispatch pyOpenSSL protego
pip install -r tests/requirements.txt
pytest
```
Thefuck:
```
pip install -r requirements.txt
python setup.py install
pytest
```

0 comments on commit 7cccb42

Please sign in to comment.