Skip to content

Latest commit

 

History

History
executable file
·
66 lines (43 loc) · 1.23 KB

File metadata and controls

executable file
·
66 lines (43 loc) · 1.23 KB

Android Test Automation

N|Solid

Build Status

Project description

Clone Project

$ git clone git@github.com:DiscordTime/ata.git
$ cd ata

Compiling

$ make

This will create a binary(ata) on current folder and set a version variable to it.

Running

$ make run

This command will run ./ata

Testing all possible args

$ make test

This will run all possible args in ata binary.

Installing

$ make install

This will install ata binary on ~/.local/bin/ and install completion on /etc/bash_completion.d/

⚠️ To change binary installation path you can set the variable BIN_PATH when make install on environment as the example below.

$ make install BIN_PATH=/usr/bin/

Uninstalling

$ make uninstall

This will remove completion.bash file and ata binary.

⚠️ If you change the BIN_PATH on installation you may set the correct BIN_PATH to uninstall.

$ make uninstall BIN_PATH=/usr/bin