You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,5 +98,21 @@ and thus not have the client download them automatically.
98
98
-`qlx_workshopReferences`: A comma-separated list of workshop IDs for items you want to force the client to download.
99
99
Use this for custom resources, such as sounds packs and whatnot.
100
100
101
+
## Develop
102
+
103
+
To install requirements for unit testing:
104
+
105
+
```
106
+
git submodule init
107
+
git submodule update --recursive
108
+
python3 -m pip install mockito
109
+
```
110
+
111
+
To run unit tests, use following commands:
112
+
113
+
```
114
+
python3 -m unittest tests
115
+
```
116
+
101
117
## Contribute
102
-
If you create pull requests, please try to not deviate from the coding style of the plugins (e.g. don't use camelCase variable names and stuff like that), and please create the PR against the develop branch of the repository.
118
+
If you create pull requests, please try to not deviate from the coding style of the plugins (e.g. don't use camelCase variable names and stuff like that), and please create the PR against the master branch of the repository.
0 commit comments