💻Pylenium CLI
The CLI comes with commands to initialize and create Pylenium files, and more.
Last updated
The CLI comes with commands to initialize and create Pylenium files, and more.
Initializes Pylenium into the current directory. This creates Pylenium's required files:
conftest.py
pylenium.json
pytest.ini
pylenium initMake sure to run this command at the Project Root (aka Workspace)
By default, this will not overwrite Pylenium files if they already exist.
You can overwrite an existing conftest.py file with the latest version by using the -c flag.
pylenium init -cYou can overwrite an existing pylenium.json file with the latest defaults by using the -p flag.
pylenium init -pYou can overwrite an existing pytest.ini file with the latest defaults by using the -i flag.
You can overwrite two or more files by combining flags.
Last updated
pylenium init -ipylenium init -cpi