From 115816d3e47c80f64e843085fb09cf878ce19dfa Mon Sep 17 00:00:00 2001 From: Kentaro Wada Date: Wed, 7 Apr 2021 13:28:16 +0900 Subject: [PATCH] Add "How to contribute" to README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 362dc13..2e62c58 100644 --- a/README.md +++ b/README.md @@ -235,6 +235,20 @@ dist/labelme --version ``` +## How to contribute + +Make sure below test passes on your environment. +See `.github/workflows/ci.yml` for more detail. + +```bash +pip install black hacking pytest pytest-qt + +flake8 . +black --line-length 79 --check labelme/ +MPLBACKEND='agg' pytest tests/ -m 'not gpu' +``` + + ## Acknowledgement This repo is the fork of [mpitid/pylabelme](https://github.com/mpitid/pylabelme), -- GitLab