Skip to content

Commit c4faf84

Browse files
Kludexpwoolvett
authored andcommitted
Replace references to httpx by broadcaster (encode#73)
Co-authored-by: Pablo Woolvett <17148684+pwoolvett@users.noreply.github.com>
1 parent 5306eaa commit c4faf84

4 files changed

Lines changed: 8 additions & 6 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ test.db
55
.mypy_cache/
66
*.egg-info/
77
venv/
8+
build/
9+
dist/

scripts/check

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh -e
22

33
export PREFIX=""
4-
if [ -d 'venv' ] ; then
4+
if [ -d 'venv' ]; then
55
export PREFIX="venv/bin/"
66
fi
77
export SOURCE_FILES="broadcaster tests"
@@ -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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/bin/sh -e
22

33
export PREFIX=""
4-
if [ -d 'venv' ] ; then
4+
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ markers =
2121

2222
[coverage:run]
2323
omit = venv/*
24-
include = httpx/*, tests/*
24+
include = broadcaster/*, tests/*

0 commit comments

Comments
 (0)