Skip to content

Commit 4b3b68a

Browse files
committed
fix
1 parent 51adb33 commit 4b3b68a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

performance_tests/consolidate_results.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
# SPDX-License-Identifier: Apache-2.0
33
"""Script for consolidating results for execution times"""
44

5-
import csv
65
import argparse
6+
import csv
7+
78
import numpy as np
89

910

tox.ini

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ envlist =
1717
# The `mpl` prefix specifies a separate target,
1818
# i.e. `mpllocal` instead of `local`.
1919
# `mplXXX` contains tests using MPL components.
20-
py{311,312}-mpl{local,examples,performance_tests}-mpl
20+
py{311,312}-mpl{local,examples,performancetests}-mpl
2121
nocmk,
2222
bandit, doc8, readme, docs,
23-
{flake8,pylint}{,-tests,-examples,-performance_tests},
23+
{flake8,pylint}{,-tests,-examples,-performancetests},
2424
isort-check, black-check,
2525
# prone to false positives
2626
vulture
@@ -92,7 +92,7 @@ commands =
9292
examples: {[testenv:base-command]commands} examples/test/legacy/ -m examples
9393
# MPL keyring examples require a special IAM role; run these separately under a separate set of permissions
9494
mplexamples: {[testenv:base-command]commands} examples/test/ -m examples --ignore examples/test/legacy/
95-
performance_tests: {[testenv:base-command]commands} performance_tests/test/keyrings/ performance_tests/test/master_key_providers/
95+
performancetests: {[testenv:base-command]commands} performance_tests/test/keyrings/ performance_tests/test/master_key_providers/
9696
all: {[testenv:base-command]commands} test/ examples/test/legacy/ --ignore test/mpl/
9797
mplall: {[testenv:base-command]commands} test/ examples/test/
9898
manual: {[testenv:base-command]commands}
@@ -176,7 +176,7 @@ commands =
176176
--ignore D103,E203,W503 \
177177
examples/test/
178178

179-
[testenv:flake8-performance_tests]
179+
[testenv:flake8-performancetests]
180180
basepython = {[testenv:flake8]basepython}
181181
deps = {[testenv:flake8]deps}
182182
commands =
@@ -208,7 +208,7 @@ commands =
208208
pylint --rcfile=examples/src/pylintrc examples/src/
209209
pylint --rcfile=examples/test/pylintrc --disable R0801 examples/test/
210210

211-
[testenv:pylint-performance_tests]
211+
[testenv:pylint-performance-tests]
212212
basepython = {[testenv:pylint]basepython}
213213
deps = {[testenv:pylint]deps}
214214
commands =
@@ -266,7 +266,6 @@ commands = isort -rc \
266266
test \
267267
# We do not include examples/test because of the need to modify sys.path for some imports
268268
examples/src/ \
269-
performance_tests/ \
270269
doc \
271270
setup.py \
272271
{posargs}

0 commit comments

Comments
 (0)