Skip to content
This repository has been archived by the owner on Feb 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1 from scrapli/develop
Browse files Browse the repository at this point in the history
more clean up, loosen reqs pinning
  • Loading branch information
carlmontanari authored Jun 6, 2020
2 parents 5d30363 + 2ed18c6 commit bb619bd
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 32 deletions.
7 changes: 0 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,6 @@ lint:
python -m pydocstyle .
python -m mypy scrapli_asyncssh/

lint_full:
python -m isort -rc -y .
python -m black .
python -m pylama .
python -m pydocstyle .
python -m mypy scrapli_asyncssh/

cov:
python -m pytest \
--cov=scrapli_asyncssh \
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
asyncssh==2.2.1
scrapli==2020.06.06
asyncssh>=2.2.1
scrapli>=2020.06.06
2 changes: 1 addition & 1 deletion scrapli_asyncssh/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""scrapli asyncssh transport plugin"""

__version__ = "2020.06.06"
__version__ = "2020.06.06a"
2 changes: 0 additions & 2 deletions tests/unit/test_pass.py

This file was deleted.

Empty file.
7 changes: 7 additions & 0 deletions tests/unit/transport/test_asyncssh_.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from scrapli_asyncssh.transport import Transport


def test_creation():
conn = Transport("localhost")
assert conn.host == "localhost"
assert conn.port == 22
20 changes: 0 additions & 20 deletions tox.ini

This file was deleted.

0 comments on commit bb619bd

Please sign in to comment.