Skip to content

Commit

Permalink
pytest_devlife -> pytest_insper
Browse files Browse the repository at this point in the history
  • Loading branch information
toshikurauchi committed Feb 1, 2024
1 parent 968c79d commit dfe2799
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 250 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Pytest Insper

This is a set of utility functions and fixtures that we use at our courses at Insper.

You can install them with:

```
pip install pytest-insper
```
13 changes: 6 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
long_description = fh.read()

setuptools.setup(
name="pytest-devlife",
version="0.3.0",
name="pytest-insper",
version="0.1.0",
author="Andrew Kurauchi",
author_email="andrewTNK@insper.edu.br",
description="Pytest plugin for Insper Developer Life",
description="Pytest plugin for courses at Insper",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/insper-education/pytest-devlife",
url="https://github.com/insper-education/pytest-insper",
project_urls={
"Bug Tracker": "https://github.com/insper-education/pytest-devlife/issues",
"Bug Tracker": "https://github.com/insper-education/pytest-insper/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
Expand All @@ -25,11 +25,10 @@
python_requires=">=3.7",
entry_points={
'pytest11': [
'devlife = pytest_devlife',
'insper = pytest_insper',
],
},
install_requires=[
'pytest',
'python-dotenv',
],
)
21 changes: 0 additions & 21 deletions src/pytest_devlife/__init__.py

This file was deleted.

24 changes: 0 additions & 24 deletions src/pytest_devlife/client.py

This file was deleted.

1 change: 0 additions & 1 deletion src/pytest_devlife/constants.py

This file was deleted.

120 changes: 0 additions & 120 deletions src/pytest_devlife/exercise.py

This file was deleted.

69 changes: 0 additions & 69 deletions src/pytest_devlife/plugin.py

This file was deleted.

8 changes: 0 additions & 8 deletions src/pytest_devlife/settings.py

This file was deleted.

1 change: 1 addition & 0 deletions src/pytest_insper/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from pytest_insper.fixtures import *
File renamed without changes.
File renamed without changes.

0 comments on commit dfe2799

Please sign in to comment.