salt/tests/pytests
Sebastian Marsching 02a1ee476e Extend OpenVSwitch modules (closes #58986).
This adds the new openvswitch_db state module. It also  adds the new
functions bridge_to_parent, bridge_to_vlan, db_get, and db_set to the
openvswitch execution module.

Besides, it adds two new optional parameters parent and vlan to the
openvswitch_bridge.present state module function and the
openvswitch.bridge_create execution module function.
2022-12-09 19:43:03 +01:00
..
functional Remove unused, and deprecated, import 2022-12-06 12:41:29 -07:00
integration Less verbose until we figure out what's going so it doesn't blow up jenkins slaves heap 2022-12-08 11:53:30 +00:00
scenarios Less verbose until we figure out what's going so it doesn't blow up jenkins slaves heap 2022-12-08 11:53:30 +00:00
unit Extend OpenVSwitch modules (closes #58986). 2022-12-09 19:43:03 +01:00
__init__.py Pyupgrade and drop six 2021-07-06 09:04:28 -04:00
conftest.py Less verbose until we figure out what's going so it doesn't blow up jenkins slaves heap 2022-12-08 11:53:30 +00:00
README.md

New Test Suite

Welcome to the new test suite for Salt!

Any test under this directory shall be written exploring the full capabilities of PyTest. That means, no occurrences of the TestCase class shall be used, neither our customizations to it.

Purpose

While PyTest can happily run unittest tests(withough taking advantage of most of PyTest's strengths), this new path in the tests directory was created to provide a clear separation between the two approaches to writing tests. Some(hopefully all) of the existing unittest tests might get ported to PyTest's style of writing tests, new tests should be added under this directory tree, and, in the long run, this directoy shall become the top level tests directoy.