Allure Install Mac

Profile picture for user devraj

Allure Framework is a flexible lightweight multi-language test report tool that shows a very concise representation of what have been tested in a neat web report form and allows everyone participating in the development process to extract maximum of useful information from everyday execution of tests.

There could be multiple ways of installing Allure on Mac machine. We will do it using 2 methods, one is brew and another is using npm.

Table of Contents

  1. brew install allure
  2. brew uninstall allure
  3. npm install allure
  4. npm uninstall allure
  5. Video Tutorial

Brew Install Allure

Homebrew is a free and open-source software package management system that simplifies the installation of software on Apple's macOS operating system and Linux. 

$ brew install allure

Brew Uninstall Allure

$ brew uninstall allure

NPM Install Allure

npm, short for Node Package Manager, is two things: first and foremost, it is an online repository for the publishing of open-source Node.js projects; second, it is a command-line utility for interacting with said repository that aids in package installation, version management, and dependency management. 

$ npm install -g allure-commandline

NPM Uninstall Allure

$ npm uninstall -g allure-commandline