https://github.com/ryu22e/introduction-to-schemathesis
PyCon mini 東海 2025資料
https://github.com/ryu22e/introduction-to-schemathesis
Last synced: 5 months ago
JSON representation
PyCon mini 東海 2025資料
- Host: GitHub
- URL: https://github.com/ryu22e/introduction-to-schemathesis
- Owner: ryu22e
- License: cc-by-4.0
- Created: 2025-09-30T00:48:32.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-11-08T04:36:58.000Z (7 months ago)
- Last Synced: 2025-11-08T06:05:12.664Z (7 months ago)
- Language: Python
- Homepage: https://introduction-to-schemathesis.ryu22e.dev/
- Size: 280 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# APIのテストデータを自動生成できるSchemathesisの紹介
## Requirements
* Git
* Python 3.10 or higher
* Your favorite editor
## How to Build
```bash
$ git clone {repository url}
$ cd {repository path}
$ python -m venv .venv
$ source .venv/bin/activate
(.venv)$ pip install -r requirements_dev.txt
(.venv)$ playwright install --with-deps chromium # Run only once initially
(.venv)$ vim source/index.md # Replace vim with your favorite editor
(.venv)$ make revealjs # Build to build/revealjs/
```
If you want to automatically rebuild when changes are made, you can use `sphinx-autobuild`:
```bash
(.venv)$ sphinx-autobuild source build/revealjs -b revealjs # Serve at http://localhost:8000
```