Skip to content

Commit

Permalink
refactor testing, pipfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
professor-ben committed Nov 10, 2022
1 parent 42838ac commit 56f0a09
Show file tree
Hide file tree
Showing 12 changed files with 98 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ jspm_packages

# pytest cache
.pytest_cache
.__pycache__
12 changes: 12 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
pytest = "==7.1.2"

[dev-packages]

[requires]
python_version = "3.8"
84 changes: 84 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file removed lib/__init__.py
Empty file.
Binary file removed lib/__pycache__/Stack.cpython-310.pyc
Binary file not shown.
Binary file removed lib/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file removed lib/__pycache__/test_setup.cpython-310-pytest-7.1.2.pyc
Binary file not shown.
Empty file removed lib/testing/__init__.py
Empty file.
Binary file removed lib/testing/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/testing/stack_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from lib.Stack import Stack
from Stack import Stack

class TestStack:
'''Class Stack in Stack.py'''
Expand Down

0 comments on commit 56f0a09

Please sign in to comment.