salt/tests
Pedro Algarvio 14282d69f6 Use proper keys since Python's base64 in Py3.11 is more picky
```
❯ artifacts/salt/bin/python3
Python 3.10.11 (main, May  5 2023, 02:31:54) [GCC 11.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import base64
>>> base64.b64decode("AAAAB3NzaC1kcQ9J5bYTEyZ==", validate=True)
b'\x00\x00\x00\x07ssh-dq\x0fI\xe5\xb6\x13\x13&'
```
```
$ artifacts/salt/bin/python3
Python 3.11.3 (main, May  5 2023, 02:31:40) [GCC 11.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import base64
>>> base64.b64decode("AAAAB3NzaC1kcQ9J5bYTEyZ==", validate=True)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/tmp/testing/artifacts/salt/lib/python3.11/base64.py", line 88, in b64decode
    return binascii.a2b_base64(s, strict_mode=validate)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
binascii.Error: Excess data after padding
```

Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
2023-06-19 23:35:51 +01:00
..
integration Use proper keys since Python's base64 in Py3.11 is more picky 2023-06-19 23:35:51 +01:00
kitchen Initial removal usage of distutils and replacement with setuptools 2022-12-20 07:07:21 -07:00
pkg/rpm
pytests Updated tests for removed RHEL 5 support 2023-06-18 08:45:50 +01:00
support Remove vendored tornado 2023-05-23 14:41:30 -07:00
unit Stop using the deprecated imp module 2023-06-19 23:35:51 +01:00
__init__.py Dam you Windows Paths! 2023-02-20 19:40:47 +00:00
buildpackage.py Initial removal usage of distutils and replacement with setuptools 2022-12-20 07:07:21 -07:00
committer_parser.py
conftest.py Drop Python 3.7 support. 2023-06-05 20:55:24 +01:00
eventlisten.py
eventlisten.sh
filename_map.yml Remaining test fixes regarding the recent GitHub RSA key change 2023-03-27 18:01:10 +00:00
minionswarm.py
modparser.py
packdump.py
runtests.py
salt-tcpdump.py
saltsh.py
wheeltest.py
zypp_plugin.py