Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/onramplab/transstellar
A pytest framework
https://github.com/onramplab/transstellar
Last synced: 6 days ago
JSON representation
A pytest framework
- Host: GitHub
- URL: https://github.com/onramplab/transstellar
- Owner: OnrampLab
- Created: 2024-03-06T07:00:25.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-11-11T10:22:45.000Z (7 days ago)
- Last Synced: 2024-11-11T10:39:00.066Z (7 days ago)
- Language: Python
- Size: 186 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# transstellar
A pytest framework
## Prepare testing environment
1. Docker
2. Create a GitHub personal access token with permission to access transstellar and permission to read and write issue.
Update .env `GITHUB_PERSONAL_ACCESS_TOKEN` variable.
## How to publish to PyPI
1. Update PyPI Token. Open .env to update `POETRY_PYPI_TOKEN_PYPI` variable.
2. Create a new version and tag
```
poetry version [major|minor|patch]
git add -u; git commit -m 'chore: bump version to 1.2.3'
git tag -a v1.2.3
```3. Build & Publish
```
poetry build
poetry publish
```