Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.

Commit aaf59e8

Browse files
committed
chore: update remnants, packages
Signed-off-by: Pablo Woolvett <[email protected]>
1 parent 4643d47 commit aaf59e8

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@ test.db
33
.coverage
44
.pytest_cache/
55
.mypy_cache/
6-
starlette.egg-info/
6+
broadcaster.egg-info/
77
venv/
8+
build/
9+
dist/

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ wheel
1111

1212
# Tests & Linting
1313
autoflake
14-
black==20.8b1
14+
black==22.3.0
1515
coverage==5.3
1616
flake8
1717
flake8-bugbear
1818
flake8-pie==0.5.*
1919
isort==5.*
2020
mypy
21-
pytest==5.*
21+
pytest==7.*
2222
pytest-asyncio
2323
pytest-trio
2424
trio

scripts/check

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ set -x
1111
${PREFIX}black --check --diff --target-version=py37 $SOURCE_FILES
1212
${PREFIX}flake8 $SOURCE_FILES
1313
${PREFIX}mypy $SOURCE_FILES
14-
${PREFIX}isort --check --diff --project=httpx $SOURCE_FILES
14+
${PREFIX}isort --check --diff --project=broadcaster $SOURCE_FILES

scripts/lint

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ export PREFIX=""
44
if [ -d 'venv' ] ; then
55
export PREFIX="venv/bin/"
66
fi
7-
export SOURCE_FILES="httpx tests"
7+
export SOURCE_FILES="broadcaster tests"
88

99
set -x
1010

1111
${PREFIX}autoflake --in-place --recursive $SOURCE_FILES
12-
${PREFIX}isort --project=httpx $SOURCE_FILES
12+
${PREFIX}isort --project=broadcaster $SOURCE_FILES
1313
${PREFIX}black --target-version=py37 $SOURCE_FILES

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ combine_as_imports = True
1616

1717
[tool:pytest]
1818
addopts = -rxXs
19+
asyncio_mode = strict
1920
markers =
2021
copied_from(source, changes=None): mark test as copied from somewhere else, along with a description of changes made to accodomate e.g. our test setup
2122

2223
[coverage:run]
2324
omit = venv/*
24-
include = httpx/*, tests/*
25+
include = broadcaster/*, tests/*

0 commit comments

Comments
 (0)