Merge pull request #883 from keisuke-umezawa/feature/improve-contributionmd

This commit is contained in:
keisuke umezawa
2024-06-04 22:14:50 +09:00
committed by GitHub
2 changed files with 13 additions and 2 deletions
+8 -2
View File
@@ -86,7 +86,13 @@ Note that `OPTUNA_DASHBOARD_DEBUG=1` makes the server will automatically restart
### Running tests, lint checks and formatters
#### Running Python unit tests
#### Running unit tests for `tslib/`
```
$ make tslib-test
```
#### Running unit tests for `python_tests/`
```
$ pytest python_tests/
@@ -147,7 +153,7 @@ Please install [wasm-pack](https://rustwasm.github.io/wasm-pack/installer/) and
$ make serve-browser-app
```
Open http://127.0.0.1:9000/
Open http://localhost:5173/
## VS Code Extension
+5
View File
@@ -24,6 +24,11 @@ tslib:
cd tslib/storage && npm i && npm run build
cd tslib/react && npm i && npm run build
.PHONY: tslib-test
tslib-test: tslib
cd tslib/react/test && python generate_assets.py && npm run test
cd tslib/storage/test && python generate_assets.py && npm run test
.PHONY: serve-browser-app
serve-browser-app: tslib $(RUSTLIB_OUT)
cd standalone_app && npm run watch