salt/tests/integration
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
..
cli Skip tests.integration.cli.test_custom_module on windows. 2022-11-29 05:49:42 +00:00
client Replace usage of @skipIf(True, ...) with pytest markers 2022-12-06 06:03:10 +00:00
cloud removing azure code from repo 2023-05-22 14:21:25 -04:00
doc Pyupgrade and drop six 2021-07-06 09:04:28 -04:00
executors Pyupgrade and drop six 2021-07-06 09:04:28 -04:00
externalapi Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
files removing azure code from repo 2023-05-22 14:21:25 -04:00
fileserver Pyupgrade and drop six 2021-07-06 09:04:28 -04:00
grains Replace the usage of @skipIf(...) 2022-12-06 06:03:10 +00:00
loader Replace usage of @skipIf(True, ...) with pytest markers 2022-12-06 06:03:10 +00:00
master Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
minion Remove vendored tornado 2023-05-23 14:41:30 -07:00
modules Remove vendored tornado 2023-05-23 14:41:30 -07:00
netapi Remove vendored tornado 2023-05-23 14:41:30 -07:00
output Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
pillar The TestGitPython*HTTP and TestPygit2*HTTP tests now use a container 2022-12-29 09:12:09 +00:00
renderers Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
returners Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
runners Stop using @skipIf 2022-12-06 06:03:10 +00:00
sdb Update to isort 5.10.1 2022-08-01 12:49:16 -06:00
shell Replace @skipIf(salt.utils.platform.is_freebsd(), ...) usage 2022-12-06 06:03:10 +00:00
spm MANUALLY STARTING A PATCHER AND NOT STOPPING IT HAS CONSEQUENCES FOR THE WHOLE TEST RUN 2022-12-30 19:43:08 +00:00
ssh [3006.x] rebase test labels (#64053) 2023-04-15 18:19:58 -07:00
states Use proper keys since Python's base64 in Py3.11 is more picky 2023-06-19 23:35:51 +01:00
utils Fix lint issues after the pyyaml package upgrade 2023-06-07 22:28:15 +01:00
__init__.py Remove runtests.py and it's supporting code 2021-01-29 13:55:52 -05:00
conftest.py Update to isort 5.10.1 2022-08-01 12:49:16 -06:00