-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #161 from hibiya-itchief/testについて
Testについて
- Loading branch information
Showing
5 changed files
with
51 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,58 @@ | ||
# This is a basic workflow to help you get started with Actions | ||
|
||
#name: pytest | ||
name: pytest | ||
|
||
#permissions: write-all | ||
permissions: write-all | ||
|
||
# Controls when the workflow will run | ||
#on: | ||
# Triggers the workflow on push or pull request events but only for the "develop" branch | ||
# push: | ||
# branches: ["develop", "main"] | ||
# pull_request: | ||
# branches: ["develop", "main"] | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the "develop" branch | ||
push: | ||
branches: ["develop", "main"] | ||
pull_request: | ||
branches: ["develop", "main"] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
# workflow_dispatch: | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
#jobs: | ||
# This workflow contains a single job called "pytest" | ||
# pytest: | ||
# The type of runner that the job will run on | ||
# runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
# steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
# - uses: actions/checkout@v3 | ||
|
||
# - name: Test with pytest on Docker | ||
# run: | | ||
# touch ./app/.env | ||
# echo DB_HOST=db >> ./app/.env | ||
# echo MYSQL_USER=docker_dev >> ./app/.env | ||
# echo MYSQL_PASSWORD=cRH1eL4GbNZkFXlk >> ./app/.env | ||
# echo BIND-ADDRESS=0.0.0.0 >> ./app/.env | ||
# echo MYSQL_RANDOM_ROOT_PASSWORD=yes >> ./app/.env | ||
# echo MYSQL_DATABASE=quaint-app >> ./app/.env | ||
# docker-compose up -d | ||
# docker-compose exec -T app bash | ||
# ./wait-for-it.sh | ||
|
||
# - name: Create Coverage Comment | ||
# id: coverageComment | ||
# uses: MishaKav/pytest-coverage-comment@main | ||
# with: | ||
# pytest-coverage-path: ./pytest-coverage.txt | ||
# junitxml-path: ./app/test/pytest.xml | ||
|
||
jobs: | ||
# This workflow contains a single job called "pytest" | ||
pytest: | ||
# The type of runner that the job will run on | ||
runs-on: ubuntu-latest | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Test with pytest on Docker | ||
run: | | ||
touch ./app/.env | ||
echo DB_HOST=db >> ./app/.env | ||
echo MYSQL_USER=docker_dev >> ./app/.env | ||
echo MYSQL_PASSWORD=cRH1eL4GbNZkFXlk >> ./app/.env | ||
echo BIND-ADDRESS=0.0.0.0 >> ./app/.env | ||
echo MYSQL_RANDOM_ROOT_PASSWORD=yes >> ./app/.env | ||
echo MYSQL_DATABASE=quaint-app >> ./app/.env | ||
docker-compose up -d | ||
sleep 60s | ||
docker-compose exec -T app bash /workspace/wait-for-it.sh db:3306 -t 60 -- pytest ./workspace/app/test --cov --junitxml=/app/app/test/pytest.xml --cov-report=term-missing:skip-covered > ./pytest-coverage.txt | ||
- name: Create Coverage Comment | ||
id: coverageComment | ||
uses: MishaKav/pytest-coverage-comment@main | ||
with: | ||
pytest-coverage-path: ./pytest-coverage.txt | ||
junitxml-path: ./app/test/pytest.xml | ||
# - name: Create Coverage Badge | ||
# uses: schneegans/[email protected] | ||
# with: | ||
# auth: ${{ secrets.BADGE_GIST }} # 名前は適宜変更:手順5で決めたトークン名 | ||
# gistID: 81370c9284b6c64224021c2c6520c2e3 #先ほど控えたGist ID | ||
# 以降はコピペ可 | ||
# cerverageCommentはPytest Coverage CommentのID | ||
# 書き換えた場合は変更が必要 | ||
# # 以降はコピペ可 | ||
# # cerverageCommentはPytest Coverage CommentのID | ||
# # 書き換えた場合は変更が必要 | ||
# filename: pytest-coverage-comment.json | ||
# label: Coverage | ||
# message: ${{ steps.coverageComment.outputs.coverage }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
e17f0d0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Coverage Report