Skip to content

Commit

Permalink
Merge pull request #108 from dai-motoki/issue-105-update-pytest-settings
Browse files Browse the repository at this point in the history
特定のテスト実行を一時停止 (#106)
  • Loading branch information
dai-motoki authored May 4, 2024
2 parents 8f0cb76 + 2d00ddc commit a02aa8f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ jobs: #
- name: Run test_sample.py # -- test_sample.pyの実行
run: | # --- 以下のコマンドを実行
pytest tests/test_sample.py # ---- test_sample.pyをpytestで実行
- name: Run test_cli.py # -- test_cli.pyの実行
run: | # --- 以下のコマンドを実行
pytest tests/test_cli.py # ---- test_cli.pyをpytestで実行
- name: Run test_converter.py # -- test_converter.pyの実行
run: | # --- 以下のコマンドを実行
pytest tests/test_converter.py # ---- test_converter.pyをpytestで実行
# - name: Run test_cli.py # -- test_cli.pyの実行
# run: | # --- 以下のコマンドを実行
# pytest tests/test_cli.py # ---- test_cli.pyをpytestで実行
# - name: Run test_converter.py # -- test_converter.pyの実行
# run: | # --- 以下のコマンドを実行
# pytest tests/test_converter.py # ---- test_converter.pyをpytestで実行
deploy: # デプロイジョブ
needs: test # - テストジョブが成功した後に実行
runs-on: ubuntu-latest # - Ubuntu最新版で実行
Expand Down

0 comments on commit a02aa8f

Please sign in to comment.