Skip to content

Commit 8ee405e

Browse files
committed
Merge branch 'drop-cassandra-support'
2 parents ebdd46a + c29c8aa commit 8ee405e

File tree

84 files changed

+5813
-1758
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+5813
-1758
lines changed

.circleci/config.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@ jobs:
3333
integration-tests:
3434
docker:
3535
- image: circleci/node:12.16
36-
environment:
37-
MAX_HEAP_SIZE: 2048m
38-
HEAP_NEWSIZE: 512m
3936
- image: mailhog/mailhog
4037
- image: mysql:5.7
4138
environment:

.eslintrc.json

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
{
2-
"extends": "standard",
3-
"plugins": [],
4-
"env": {
5-
"node": true,
6-
"mocha": true
7-
},
8-
"parserOptions": {
9-
"ecmaVersion": 8,
10-
"sourceType": "module"
11-
},
12-
"rules": {
13-
"eol-last": "off",
14-
"space-before-function-paren": "off",
15-
"indent": ["error", 4],
16-
"quotes": ["error", "single", { "avoidEscape": true }],
17-
"semi": ["error", "always",{ "omitLastInOneLineBlock": true}],
18-
"one-var": ["off"],
19-
"space-before-blocks": ["off"],
20-
"camelcase": ["warn"]
21-
}
22-
}
23-
2+
"extends": "standard",
3+
"plugins": [],
4+
"env": {
5+
"node": true,
6+
"mocha": true,
7+
"es6": true
8+
},
9+
"parserOptions": {
10+
"ecmaVersion": 2018,
11+
"sourceType": "module"
12+
},
13+
"rules": {
14+
"eol-last": "off",
15+
"space-before-function-paren": "off",
16+
"indent": ["error", 4, { "SwitchCase": 1 }],
17+
"quotes": ["error", "single", { "avoidEscape": true }],
18+
"semi": ["error", "always", { "omitLastInOneLineBlock": true }],
19+
"one-var": ["off"],
20+
"space-before-blocks": ["off"],
21+
"camelcase": ["warn"],
22+
"quote-props": ["error", "as-needed"]
23+
}
24+
}

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ If applicable, add screenshots to help explain your problem.
2626
**Version:**
2727
- Predator: [e.g. 1.0.8]
2828
- Predator-runner [e.g. 1.0.5]
29-
- Database [e.g. Sqlite]
29+
- Database [e.g. sqlite]
3030

3131
**Additional context**
3232
Add any other context about the problem here.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ It has a simple, one-click installation, built with support for Kubernetes, DC/O
2222
|-------------------------------- |:------------------:|:---------|
2323
| Distributed Load | :sparkle: |Predator supports an unlimited number of load generators that produce multiple load runners concurrently.
2424
| Rich UI | :sparkle: |Predator offers a rich UI where you can write tests, run them and compare results.
25-
| Reports && Tests Persistence | :sparkle: |Predator provides out-of-the box functionality for persisting data in Postgres, MySQL, MSSQL and SQLITE.
25+
| Reports && Tests Persistence | :sparkle: |Predator provides out-of-the box functionality for persisting data in Postgres, MySQL, MSSQL and SQLITE.
2626
| Real time reports | :sparkle: |Predator aggregates all concurrent runs into a single beautiful report in real time (latency, rps, status codes and more).
2727
| CSV Datasets | :sparkle: |Predator support uploading files like csv to provide dataset for test inputs
2828
| Scheduled runs | :sparkle: |Predator can run recurring tests using cron expressions.

0 commit comments

Comments
 (0)