Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aabadie/dummymaths
Repository used for the git beginner tutorial
https://github.com/aabadie/dummymaths
Last synced: about 7 hours ago
JSON representation
Repository used for the git beginner tutorial
- Host: GitHub
- URL: https://github.com/aabadie/dummymaths
- Owner: aabadie
- Created: 2023-04-07T08:18:01.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-11T15:05:38.000Z (over 1 year ago)
- Last Synced: 2023-07-23T10:10:39.900Z (over 1 year ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Dummy maths
===========Python project implementing very simple mathematical functions.
Available functions are `add`, `sub`, `multiply`, `divide` and `power`
Testing
-------Unit tests can be run using [pytest](https://docs.pytest.org/). Install `pytest`
using `pip`:```
pip install pytest
```Then run the tests:
```
pytest
```