Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed codecov and related references and commands. #43

Merged
merged 1 commit into from
Apr 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,7 @@ jobs:
run: "scripts/check"
- name: "Run tests"
run: "scripts/tests"
- name: "Enforce coverage"
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
1 change: 0 additions & 1 deletion requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
-r typecheck.txt
pytest-cov
codecov
1 change: 0 additions & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
-r default.txt
-r dev.txt
mock; python_version<'3.8' # backport that contains AsyncMock class, includes mock library as dependency
codecov
hypothesis>=3.31
freezegun>=0.3.11
pytest-aiofiles>=0.2.0
Expand Down
1 change: 0 additions & 1 deletion scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
* `scripts/test` - Run the test suite.
* `scripts/lint` - Run the automated code linting/formatting tools.
* `scripts/check` - Run the code linting, checking that it passes.
* `scripts/coverage` - Check that code coverage is complete.
* `scripts/build` - Build source and wheel packages.
* `scripts/publish` - Publish the latest version to PyPI.

Expand Down
11 changes: 0 additions & 11 deletions scripts/coverage

This file was deleted.

1 change: 0 additions & 1 deletion t/functional/test_timers.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ class Interval(NamedTuple):


class test_Timer:

# first clock value
epoch = 9.0

Expand Down
1 change: 0 additions & 1 deletion t/functional/utils/test_tracebacks.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

@pytest.mark.asyncio
async def test_format_task_stack():

on_done = asyncio.Event()

async def foo():
Expand Down
1 change: 0 additions & 1 deletion t/unit/utils/test_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ def test_iter_mro_reversed(cls, stop, expected_mro):


def test_Unordered():

assert Unordered(1) < Unordered(10)
x = set()
x.add(Unordered({"foo": "bar"}))
Expand Down