Skip to content

Commit 5120c53

Browse files
authored
Allow all commands to be run in testenv (#416)
* Allow all commands to be run in testenv Signed-off-by: Arnaud Morin <[email protected]> Change-Id: If51f9616e066faecedccb9a77d4472c399f5d598 * Add missing .pre-commit-config.yaml file Signed-off-by: Arnaud Morin <[email protected]> Change-Id: I89b092061dd4b3f85235486938a88c94fdc27f16 * Fix CI trailing whitespace Signed-off-by: Arnaud Morin <[email protected]> Change-Id: Ie819f56c330511e3206bcf36ddc08584f25d6674 --------- Signed-off-by: Arnaud Morin <[email protected]>
1 parent c6ed09a commit 5120c53

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ current_version = 5.1.1
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z\d]+)?
6-
serialize =
6+
serialize =
77
{major}.{minor}.{patch}{releaselevel}
88
{major}.{minor}.{patch}
99

.pre-commit-config.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v4.4.0
4+
hooks:
5+
- id: trailing-whitespace

Changelog

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
4848
:release-by: Asif Saif Uddin
4949

5050
- Reduce memory usage of Connection (#377)
51-
- Add additional error handling around code where an OSError
51+
- Add additional error handling around code where an OSError
5252
may be raised on failed connections. Fixes (#378)
5353

5454

@@ -60,7 +60,7 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
6060
:release-by: Asif Saif Uddin
6161

6262
- Remove dependency to case
63-
- Bugfix: not closing socket after server disconnect
63+
- Bugfix: not closing socket after server disconnect
6464

6565

6666
.. _version-5.0.6:
@@ -76,7 +76,7 @@ http://code.google.com/p/py-amqplib/source/browse/CHANGES
7676
"ValueError: Cannot set verify_mode to CERT_NONE when check_hostname is enabled."
7777
Setting context.check_hostname prior to setting context.verify_mode resolves the
7878
issue.
79-
- Remove TCP_USER_TIMEOUT option for Solaris (#355)
79+
- Remove TCP_USER_TIMEOUT option for Solaris (#355)
8080
- Pass long_description to setup() (#353)
8181
- Fix for tox-docker 2.0
8282
- Moved to GitHub actions CI (#359)

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ basepython =
2828
3.9: python3.9
2929
3.10: python3.10
3030
install_command = python -m pip --disable-pip-version-check install {opts} {packages}
31+
allowlist_externals = *
3132
commands_pre =
3233
integration-rabbitmq: ./wait_for_rabbitmq.sh
3334
docker =

0 commit comments

Comments
 (0)