Skip to content

3.3.4 - Refactoring, optimizations, dependencies, docs

Compare
Choose a tag to compare
@mdmintz mdmintz released this 30 Jun 22:21
· 2803 commits to master since this release
57171f2

Refactoring, optimizations, dependencies, docs

--variables=DICT
A var dict to pass to tests from the command line.

Example usage:  (with pytest)
----------------------------------------------
Option: --variables='{"special":123}'
Access: self.variables["special"]  # (123)
----------------------------------------------
Option: --variables='{"color":"red","num":42}'
Access: self.variables["color"]  # ("red")
Access: self.variables["num"]  # (42)
----------------------------------------------