💻Pylenium CLI
The CLI comes with commands to initialize and create Pylenium files, and more.
pylenium init
Initializes Pylenium into the current directory. This creates Pylenium's required files:
conftest.pypylenium.jsonpytest.ini
pylenium initMake sure to run this command at the Project Root (aka Workspace)
Overwrite conftest.py file
You can overwrite an existing conftest.py file with the latest version by using the -c flag.
pylenium init -cOverwrite pylenium.json file
You can overwrite an existing pylenium.json file with the latest defaults by using the -p flag.
pylenium init -pOverwrite pytest.ini file
You can overwrite an existing pytest.ini file with the latest defaults by using the -i flag.
pylenium init -iOverwrite multiple files at once
You can overwrite two or more files by combining flags.
pylenium init -cpiLast updated