Contributing Code
To contribute to the Appium code base make sure to check out the Git repository.
Info
If you are VS Code user you can easily check out the project using Runme.
It is advised to fork before cloning it to your system.
export GITHUB_USERNAME=<your-username>
git clone [email protected]:$GITHUB_USERNAME/appium.git
After cloning you can go ahead and install the project dependencies:
From here on there are several things you can do.
Watch Files¶
When developing Appium code we have to watch all JavaScript and TypeScript files to re-compile them after every change. You can run this watch process via:
Start Appium in Dev-Mode¶
To test your changes you can run Appium in dev mode via:
Run Tests¶
The project maintains a set of different test variations you can run to verify the quality of the code.
Linting¶
Appium uses eslint
for static code analysis and linting. You can run these checks via:
Unit¶
You can also run tests for specific workspaces, e.g.:
Smoke and E2E¶
Deploy Docs Locally¶
Our documentation system uses MKDocs and therefore requires Python to be installed on your system. You can run the docs by:
# installing needed Python dependencies
pip install -r packages/docutils/requirements.txt
# build the project
npm run build
# run dev server
npm run dev:docs
You should be able to view the page at http://127.0.0.1:8000/docs/en
: