Skip to content

sankethkamathk/run-pytest

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

run-pytest

GitHub action that runs pytest.

Installing

Create and commit .github/workflows/run-pytest.yml in your repo.

name: Run Pytest

# For example, run it on PRs
on:
  pull_request:

jobs:
  run-pytest:
    runs-on: ubuntu-latest
    steps:
      # Check out the repository
      - uses: actions/checkout@v2

      # Run the action that comments with suggestions
      - uses: cloudtostreet/run-pytest@v1
        with:
          # The directory to run pytest on. Use "." for everything.
          path: "."

About

GitHub action to run pytest tests

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 61.9%
  • Dockerfile 38.1%