|
@@ -299,15 +299,22 @@ borgmatic to run.
|
299
|
299
|
|
300
|
300
|
## Running tests
|
301
|
301
|
|
302
|
|
-First install tox, which is used for setting up testing environments:
|
|
302
|
+First, clone a copy of [borgmatic source code](https://projects.torsion.org/witten/borgmatic):
|
303
|
303
|
|
304
|
304
|
```bash
|
305
|
|
-pip3 install tox
|
|
305
|
+git clone https://projects.torsion.org/witten/borgmatic
|
306
|
306
|
```
|
307
|
307
|
|
308
|
|
-Then, to actually run tests, run:
|
|
308
|
+Then, install tox, which is used for setting up testing environments:
|
309
|
309
|
|
310
|
310
|
```bash
|
|
311
|
+sudo pip3 install tox
|
|
312
|
+```
|
|
313
|
+
|
|
314
|
+Finally, to actually run tests, run:
|
|
315
|
+
|
|
316
|
+```bash
|
|
317
|
+cd borgmatic
|
311
|
318
|
tox
|
312
|
319
|
```
|
313
|
320
|
|