Skip to content

Commit

Permalink
ignore, __init__, makefile install-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
akarve committed May 25, 2024
1 parent f582f8a commit dd711d1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
__pycache__
.DS_Store
*.egg-info
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@ check:
black . --check

# developer
install:
install-dev:
pip install -r requirements.txt -r test-requirements.txt
pip install -e .
# you must have go installed https://go.dev/doc/install
go install github.com/rhysd/actionlint/cmd/actionlint@latest

lint:
black .

test:
python -m pytest tests -m "not network" -x
pytest tests -m "not network" -x

test-network:
python -m pytest tests
pytest tests
Empty file added __init__.py
Empty file.

0 comments on commit dd711d1

Please sign in to comment.