Skip to content

Commit

Permalink
create pmm tool 2
Browse files Browse the repository at this point in the history
  • Loading branch information
janderson4 committed Nov 16, 2024
1 parent aab7bd4 commit 172eace
Show file tree
Hide file tree
Showing 131 changed files with 5,781 additions and 171 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Test with pytest
run: |
python -m pytest --cov=efficalc --cov-report=xml tests
python -m pytest tests --cov=efficalc --cov-report=xml tests
- name: Coveralls
uses: coverallsapp/github-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
python -m pytest
python -m pytest tests
103 changes: 103 additions & 0 deletions .idea/workspace.xml

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

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish:

# within venv
tests:
python -m pytest
python -m pytest tests

# within venv
docs:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

<p align="center">
<a href="https://github.com/youandvern/efficalc/actions/workflows/tests.yml"><img alt="Tests" src="https://github.com/youandvern/efficalc/actions/workflows/tests.yml/badge.svg"></a>&nbsp;&nbsp;&nbsp;
<a href="https://coveralls.io/github/youandvern/efficalc?branch=main"><img alt="Coverage Status" src="https://coveralls.io/repos/github/youandvern/efficalc/badge.svg?branch=main&v=1.2.0"></a>&nbsp;&nbsp;&nbsp;
<a href="https://coveralls.io/github/youandvern/efficalc?branch=main"><img alt="Coverage Status" src="https://coveralls.io/repos/github/youandvern/efficalc/badge.svg?branch=main&v=1.2.2"></a>&nbsp;&nbsp;&nbsp;
<a href="https://github.com/youandvern/efficalc/blob/main/LICENSE"><img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-yellow.svg"></a>&nbsp;&nbsp;&nbsp;
<a href="https://badge.fury.io/py/efficalc"><img alt="PyPI version" src="https://badge.fury.io/py/efficalc.svg?version=1.2.0"></a>
<a href="https://badge.fury.io/py/efficalc"><img alt="PyPI version" src="https://badge.fury.io/py/efficalc.svg?version=1.2.2"></a>
</p>


Expand Down
2 changes: 1 addition & 1 deletion docs/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 0b61954b10429afc60dfc155a8e18b44
config: 585cac338760b6bd68fab13cc0af68e6
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified docs/.doctrees/base_classes.doctree
Binary file not shown.
Binary file modified docs/.doctrees/calculation_helpers.doctree
Binary file not shown.
Binary file modified docs/.doctrees/canvas.doctree
Binary file not shown.
Binary file modified docs/.doctrees/environment.pickle
Binary file not shown.
8 changes: 8 additions & 0 deletions docs/_sources/base_classes.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ Base Classes
:members:


.. autoclass:: efficalc.Table
:members:


.. autoclass:: efficalc.InputTable
:members:


.. autoclass:: efficalc.TextBlock
:members:

Expand Down
4 changes: 4 additions & 0 deletions docs/_sources/calculation_helpers.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ Calculation Helpers
:members:


.. autoclass:: efficalc.report_builder.LongCalcDisplayType
:members:


.. autofunction:: efficalc.save_calculation_item


Expand Down
12 changes: 12 additions & 0 deletions docs/_sources/canvas.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,15 @@ Canvas Elements
.. autoclass:: efficalc.canvas.Rectangle
:members:

.. autoclass:: efficalc.canvas.Text
:members:

.. autoclass:: efficalc.canvas.Dimension
:members:

.. autoclass:: efficalc.canvas.Leader
:members:

Line/Polyline Markers
*********************

Expand All @@ -193,3 +202,6 @@ Base Classes
.. autoclass:: efficalc.canvas.Marker
:members:

.. autoclass:: efficalc.canvas.ElementWithMarkers
:members:

2 changes: 1 addition & 1 deletion docs/_static/documentation_options.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const DOCUMENTATION_OPTIONS = {
VERSION: '1.2.0',
VERSION: '1.2.6',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
Expand Down
Loading

0 comments on commit 172eace

Please sign in to comment.