Skip to content

Commit 3e4f6cf

Browse files
committed
Remove benchmarks
1 parent d288974 commit 3e4f6cf

File tree

55 files changed

+0
-2012
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+0
-2012
lines changed

.pyup.yml

-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ requirements:
55
- requirements/test.txt:
66
updates: all
77
pin: True
8-
- requirements/benchmark.txt:
9-
updates: all
10-
pin: True
118
- requirements/coverage.txt:
129
updates: all
1310
pin: True

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ env:
3636
- TASK=doctest
3737
- TASK=check-rst
3838
- TASK=check-format
39-
- TASK=check-benchmark
4039
- TASK=check-coverage
4140
- TASK=check-requirements
4241
- TASK=check-pypy

Makefile

-25
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ TOOL_VIRTUALENV:=$(BUILD_RUNTIMES)/virtualenvs/tools-$(shell scripts/tool-hash.p
3434
TOOL_PYTHON=$(TOOL_VIRTUALENV)/bin/python
3535
TOOL_PIP=$(TOOL_VIRTUALENV)/bin/pip
3636

37-
BENCHMARK_VIRTUALENV:=$(BUILD_RUNTIMES)/virtualenvs/benchmark-$(shell scripts/tool-hash.py benchmark)
38-
BENCHMARK_PYTHON=$(BENCHMARK_VIRTUALENV)/bin/python
39-
4037
FILES_TO_FORMAT=$(BEST_PY3) scripts/files-to-format.py
4138

4239

@@ -66,11 +63,6 @@ $(TOOL_VIRTUALENV): $(BEST_PY3)
6663
$(BEST_PY3) -m virtualenv $(TOOL_VIRTUALENV)
6764
$(TOOL_PIP) install -r requirements/tools.txt
6865

69-
$(BENCHMARK_VIRTUALENV): $(BEST_PY3)
70-
rm -rf $(BUILD_RUNTIMES)/virtualenvs/benchmark-*
71-
$(BEST_PY3) -m virtualenv $(BENCHMARK_VIRTUALENV)
72-
$(BENCHMARK_PYTHON) -m pip install -r requirements/benchmark.txt
73-
7466
$(TOOLS): $(TOOL_VIRTUALENV)
7567
mkdir -p $(TOOLS)
7668

@@ -220,14 +212,12 @@ check-rst: $(RSTLINT) $(FLAKE8)
220212
$(FLAKE8) --select=W191,W291,W292,W293,W391 *.rst docs/*.rst
221213

222214
compile-requirements: $(PIPCOMPILE)
223-
$(PIPCOMPILE) requirements/benchmark.in --output-file requirements/benchmark.txt
224215
$(PIPCOMPILE) requirements/test.in --output-file requirements/test.txt
225216
$(PIPCOMPILE) requirements/tools.in --output-file requirements/tools.txt
226217
$(PIPCOMPILE) requirements/typing.in --output-file requirements/typing.txt
227218
$(PIPCOMPILE) requirements/coverage.in --output-file requirements/coverage.txt
228219

229220
upgrade-requirements:
230-
$(PIPCOMPILE) --upgrade requirements/benchmark.in --output-file requirements/benchmark.txt
231221
$(PIPCOMPILE) --upgrade requirements/test.in --output-file requirements/test.txt
232222
$(PIPCOMPILE) --upgrade requirements/tools.in --output-file requirements/tools.txt
233223
$(PIPCOMPILE) --upgrade requirements/typing.in --output-file requirements/typing.txt
@@ -242,21 +232,6 @@ secrets.tar.enc: deploy_key .pypirc
242232
travis encrypt-file secrets.tar
243233
rm secrets.tar
244234

245-
check-benchmark: $(BENCHMARK_VIRTUALENV)
246-
PYTHONPATH=src $(BENCHMARK_PYTHON) scripts/benchmarks.py --check --nruns=100
247-
248-
build-new-benchmark-data: $(BENCHMARK_VIRTUALENV)
249-
PYTHONPATH=src $(BENCHMARK_PYTHON) scripts/benchmarks.py --skip-existing --nruns=1000
250-
251-
update-improved-benchmark-data: $(BENCHMARK_VIRTUALENV)
252-
PYTHONPATH=src $(BENCHMARK_PYTHON) scripts/benchmarks.py --update=improved --nruns=1000
253-
254-
update-all-benchmark-data: $(BENCHMARK_VIRTUALENV)
255-
PYTHONPATH=src $(BENCHMARK_PYTHON) scripts/benchmarks.py --update=all --nruns=1000
256-
257-
update-benchmark-headers: $(BENCHMARK_VIRTUALENV)
258-
PYTHONPATH=src $(BENCHMARK_PYTHON) scripts/benchmarks.py --only-update-headers
259-
260235
$(TOX): $(BEST_PY3) tox.ini $(TOOLS)
261236
rm -f $(TOX)
262237
ln -sf $(TOOL_VIRTUALENV)/bin/tox $(TOX)

benchmark-data/arrays10-valid=always-interesting=always

-29
This file was deleted.

benchmark-data/arrays10-valid=always-interesting=array_average

-29
This file was deleted.

benchmark-data/arrays10-valid=always-interesting=lower_bound

-29
This file was deleted.

benchmark-data/arrays10-valid=always-interesting=never

-29
This file was deleted.

0 commit comments

Comments
 (0)