Skip to content

Commit

Permalink
Merge pull request #35 from TGoddessana/dev
Browse files Browse the repository at this point in the history
remove unnecessary comments, change test code run
  • Loading branch information
TGoddessana authored Nov 18, 2023
2 parents b997814 + 422072f commit d3363fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
---
# Labels names are important as they are used by Release Drafter to decide
# regarding where to record them in changelog or if to skip them.
#
# The repository labels will be automatically configured using this file and
# the GitHub Action https://github.com/marketplace/actions/github-labeler.
- name: breaking
description: Breaking Changes
color: bfd4f2
Expand Down
4 changes: 2 additions & 2 deletions tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import pytest
from click.testing import CliRunner

from flask_moreshell import __main__
from flask_moreshell import shell


@pytest.fixture
Expand All @@ -13,5 +13,5 @@ def runner() -> CliRunner:

def test_main_succeeds(runner: CliRunner) -> None:
"""It exits with a status code of zero."""
result = runner.invoke(__main__.main)
result = runner.invoke(shell)
assert result.exit_code == 0

0 comments on commit d3363fa

Please sign in to comment.