Skip to content

Commit

Permalink
#7 Update documentation with examples of package usage (#8)
Browse files Browse the repository at this point in the history
* #7 Update documentation with examples of package usage

Package tidy up

* #7 Update README.md

* #7 Bump version and append src to tests path

* #7 Refactor / move tests dir
  • Loading branch information
conorheffron authored Oct 12, 2024
1 parent d3ce140 commit 123a8ce
Show file tree
Hide file tree
Showing 7 changed files with 92 additions and 169 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/pytest-env
/src/ironoc_pytest_conorheffron/__pycache__
/tests/__pycache__
/src/ironoc_pytest_conorheffron/tests/__pycache__
252 changes: 87 additions & 165 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "ironoc_pytest_conor_heffron"
version = "2.1.0"
version = "2.1.1"
authors = [
{ name="Conor Heffron", email="conor.heffron@gmail.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

setup(
name="ironoc-pytest",
version="2.1.0",
version="2.1.1",
install_requires=required,
)
2 changes: 1 addition & 1 deletion src/ironoc_pytest_conorheffron/github_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ class GithubModel():
def __init__(self, login, id, url) -> None:
self.login = login
self.id = id
self.url = url
self.url = url
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import json
from src.ironoc_pytest_conorheffron.github_api import GitHubClient
from ironoc_pytest_conorheffron.github_api import GitHubClient

def test_github_api_conorheffron_success():
# given
Expand Down

0 comments on commit 123a8ce

Please sign in to comment.