Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/theqrl/integration_tests

QRL Integration Tests
https://github.com/theqrl/integration_tests

docker qrl

Last synced: about 2 months ago
JSON representation

QRL Integration Tests

Awesome Lists containing this project

README

        

[![CircleCI](https://circleci.com/gh/theQRL/integration_tests.svg?style=svg)](https://circleci.com/gh/theQRL/integration_tests)
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/theQRL/qrllib/master/LICENSE)

# QRL Integration Tests

## How to run integration tests

Get CircleCI CLI (https://circleci.com/docs/2.0/local-cli/#installing-the-circleci-local-cli-on-macos-and-linux-distros)

Clone this repo and run:

```bash
circleci build
```

if you want to run some specific group/job, you can select it by using:
```bash
circleci build --job JOB_NAME
```

where JOB_NAME is one of the job described in `.circleci/config.yml`.

Example:
```bash
circleci build --job tests_js
```

When running locally, it might be useful to run the `debug` job
Example:
```bash
circleci build --job debug
```
This job is not run in the CI server but can be used locally to test different scenarios, filter specific tests, etc.