Skip to content

Commit 6902ea6

Browse files
committed
initial docker image
1 parent 1c23a5d commit 6902ea6

File tree

2 files changed

+15
-37
lines changed

2 files changed

+15
-37
lines changed

Dockerfile

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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

README.rst

-37
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,3 @@ aidocker
44

55
Generic Docker Image to run ailoads-based tests for Loads.
66

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

0 commit comments

Comments
 (0)