File tree 2 files changed +15
-37
lines changed
2 files changed +15
-37
lines changed Original file line number Diff line number Diff line change
1
+ # Mozilla Load-Tester
2
+ FROM python:3-slim
3
+
4
+ RUN \
5
+ apt-get update; \
6
+ apt-get install -y python3-pip python3-venv git build-essential make; \
7
+ apt-get install -y python3-dev libssl-dev libffi-dev
8
+
9
+ RUN \
10
+ pip install virtualenv; \
11
+ pip install git+https://github.com/loads/ailoads
12
+
13
+
14
+ # run the test
15
+ CMD aislave $AILOADS_GITHUB $AILOADS_TEST
Original file line number Diff line number Diff line change @@ -4,40 +4,3 @@ aidocker
4
4
5
5
Generic Docker Image to run ailoads-based tests for Loads.
6
6
7
- To create a smoke test / load test that can be run in Loads you need to:
8
-
9
- 1. create a test using ailoads: https://github.com/loads/ailoads
10
- 2. create a JSON file for Loads at the root of your repo, called **loads.json **
11
- that contains a **ailoads ** key with the list of your ailoads tests.
12
-
13
-
14
- Configuration
15
- =============
16
-
17
- **loads.json ** is a configuration file that contains a list of tests.
18
- Each test is defined by a name and the options that will be passed in
19
- the command line to **ailoads **.
20
-
21
- In the following example, two tests are defined, **test ** and **test-heavy **::
22
-
23
- {
24
- "ailoads": {
25
- "requirements": "requirements.txt",
26
- "tests": {
27
- "test": {"duration": 30,
28
- "verbose": true
29
- },
30
- "test-heavy": {"duration": 300,
31
- "users": 30
32
- }
33
- }
34
- }
35
- }
36
-
37
-
38
- Once you have that file on the top of you repository you can directly run
39
- it using **ailoads **, with the **aislave ** command.
40
-
41
- Example::
42
-
43
- $ aislave https://github.com/tarekziade/shavar-loadtests test
You can’t perform that action at this time.
0 commit comments