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
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -178,10 +178,18 @@ MaxDiffusion started as a fork of [Diffusers](https://github.com/huggingface/dif
178
178
179
179
Whether you are forking MaxDiffusion foryour own needs or intending to contribute back to the community, a full suite of tests can be foundin`tests` and `src/maxdiffusion/tests`.
180
180
181
-
To run unit tests and lint, simply run:
181
+
To run unit tests, simply run:
182
182
```
183
183
python -m pytest
184
-
ruff check --fix .
185
184
```
186
185
186
+
This project uses `pylint` and `pyink` to enforce code style. Before submitting a pull request, please ensure your code passes these checks by running:
187
+
188
+
```
189
+
bash code_style.sh
190
+
```
191
+
192
+
This script will automatically format your code with `pyink` and help you identify any remaining style issues.
193
+
194
+
187
195
The full suite of -end-to end tests is in`tests` and `src/maxdiffusion/tests`. We run them with a nightly cadance.
0 commit comments