Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/theqrl/integration_tests
- Owner: theQRL
- License: mit
- Created: 2017-11-11T21:16:43.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-23T22:21:31.000Z (about 2 years ago)
- Last Synced: 2023-08-06T09:21:57.541Z (over 1 year ago)
- Topics: docker, qrl
- Language: JavaScript
- Homepage:
- Size: 378 KB
- Stars: 5
- Watchers: 6
- Forks: 11
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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.