Skip to content

Commit

Permalink
Merge pull request #200 from sawa3030/update-contribution-guidelines
Browse files Browse the repository at this point in the history
Update CONTRIBUTING.md
  • Loading branch information
HideakiImamura authored Jan 31, 2025
2 parents 8cb5117 + f2dc1ce commit db4e63d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ $ black .
$ isort .

# flake8 type checking
$ flake8 tests optuna/integration
$ flake8 tests optuna_integration

# mypy type checking
$ mypy tests optuna/integration
$ mypy tests optuna_integration
```

### Documentation
Expand All @@ -93,8 +93,11 @@ Please install some required packages at first.
# Install required packages to test.
pip install ".[test]"

# Install required packages on which integration modules depend.
pip install ".[all]"
# Install required packages on which each integration module depends.
pip install ".[${INTEGRATION_MODULE_NAME}]"

# For example, for optuna_integration/cma,
pip install ".[cma]"
```

You can run your tests as follows:
Expand Down

0 comments on commit db4e63d

Please sign in to comment.