https://github.com/fylein/python-pytest-github-action
Github action for running python unit tests
https://github.com/fylein/python-pytest-github-action
team-integrations
Last synced: 4 months ago
JSON representation
Github action for running python unit tests
- Host: GitHub
- URL: https://github.com/fylein/python-pytest-github-action
- Owner: fylein
- License: mit
- Created: 2019-12-24T06:53:59.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-24T07:12:24.000Z (over 5 years ago)
- Last Synced: 2025-02-22T15:23:55.942Z (4 months ago)
- Topics: team-integrations
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 10
- Watchers: 2
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python Pytest GitHub Action
Github Action for Pytest with Python Slim Docker image (supports install of numpy and pandas and takes very less time to build)Run any Pytest command using the action -
```bash
$ Pytest test/unit
```### Usage
```yml
- name: Python Pylin GitHub Action
uses: fylein/python-pytest-github-action@v1
with:
args: pip3 install -r requirements.txt && pytest test/unit
```