Skip to content

Commit 4fae244

Browse files
committed
Upgrade test dependencies to their latest versions
1 parent b6ea0dc commit 4fae244

2 files changed

Lines changed: 46 additions & 19 deletions

File tree

test-requirements.txt

Lines changed: 45 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,49 @@
11
#
2-
# This file is autogenerated by pip-compile
2+
# This file is autogenerated by pip-compile with python 3.9
33
# To update, run:
44
#
5-
# pip-compile -v test-requirements.in
5+
# pip-compile test-requirements.in
66
#
7-
astroid==2.2.5 # via pylint
8-
atomicwrites==1.3.0 # via pytest
9-
attrs==19.1.0 # via hypothesis, pytest
10-
coverage==4.5.3
11-
hypothesis==4.11.6
12-
isort==4.3.15 # via pylint
13-
lazy-object-proxy==1.3.1 # via astroid
14-
mccabe==0.6.1 # via pylint
15-
more-itertools==6.0.0 # via pytest
16-
pluggy==0.9.0 # via pytest
17-
py==1.8.0 # via pytest
18-
pylint==2.3.1
19-
pytest==4.3.1
20-
six==1.12.0 # via astroid, pytest
21-
typed-ast==1.3.2 # via astroid
22-
wrapt==1.11.1 # via astroid
7+
astroid==2.7.2
8+
# via pylint
9+
attrs==21.2.0
10+
# via
11+
# hypothesis
12+
# pytest
13+
coverage==5.5
14+
# via -r test-requirements.in
15+
hypothesis==6.15.0
16+
# via -r test-requirements.in
17+
iniconfig==1.1.1
18+
# via pytest
19+
isort==5.9.3
20+
# via pylint
21+
lazy-object-proxy==1.6.0
22+
# via astroid
23+
mccabe==0.6.1
24+
# via pylint
25+
packaging==21.0
26+
# via pytest
27+
platformdirs==2.2.0
28+
# via pylint
29+
pluggy==0.13.1
30+
# via pytest
31+
py==1.10.0
32+
# via pytest
33+
pylint==2.10.2
34+
# via -r test-requirements.in
35+
pyparsing==2.4.7
36+
# via packaging
37+
pytest==6.2.4
38+
# via -r test-requirements.in
39+
sortedcontainers==2.4.0
40+
# via hypothesis
41+
toml==0.10.2
42+
# via
43+
# pylint
44+
# pytest
45+
wrapt==1.12.1
46+
# via astroid
47+
48+
# The following packages are considered to be unsafe in a requirements file:
49+
# setuptools

tests/test_there_and_back.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@st.composite
1818
def tape_config_strategy(draw):
1919
chars = st.characters(blacklist_categories=('Cc',))
20-
punch, blank, _sep = draw(st.sets(chars, 3, 3))
20+
punch, blank, _sep = draw(st.sets(chars, min_size=3, max_size=3))
2121
sep = draw(st.one_of(st.just(''), st.just(_sep)))
2222
return handlers.TapeConfig(punch, blank, sep)
2323

0 commit comments

Comments
 (0)