Skip to content

Commit

Permalink
move more to inside dev_resources
Browse files Browse the repository at this point in the history
  • Loading branch information
mattclifford1 committed Oct 9, 2024
1 parent 35ca1dd commit b527760
Show file tree
Hide file tree
Showing 225 changed files with 48 additions and 48 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-package-to-PyPi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
- uses: actions/checkout@v3
- name: Get Version numbers
run: |
echo "code_version=$(./scripts/get_local_version.py)" >> $GITHUB_ENV
echo "pypi_version=$(./scripts/get_latest_pypi_version.py)" >> $GITHUB_ENV
echo "code_version=$(./dev_resources/scripts/get_local_version.py)" >> $GITHUB_ENV
echo "pypi_version=$(./dev_resources/scripts/get_latest_pypi_version.py)" >> $GITHUB_ENV
- name: Set up Python
if: env.code_version != env.pypi_version
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/publish-documentation.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Deploy documentation when a new VERSION is release to the main branch
# N.B. currently doesn't build the docs: need to do that locally with
# ./scrips/make_docs.sh
# N.B. currently doesn't build the dev_resources/docs: need to do that locally with
# ./scrips/make_dev_resources/docs.sh
# Author: Matt Clifford <[email protected]>
# License: BSD 3-Clause License

Expand All @@ -16,14 +16,14 @@ permissions:
contents: write

jobs:
docs:
dev_resources/docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get Version numbers
run: |
echo "code_version=$(cat VERSION)" >> $GITHUB_ENV
echo "pypi_version=$(./scripts/get_latest_pypi_version.py)" >> $GITHUB_ENV
echo "pypi_version=$(./dev_resources/scripts/get_latest_pypi_version.py)" >> $GITHUB_ENV
# - name: Setup Python
# uses: actions/setup-python@v3
Expand Down Expand Up @@ -54,9 +54,9 @@ jobs:
#
# - name: Sphinx build
# run: |
# rm docs/IQM_Vis.*
# sphinx-apidoc -o docs IQM_Vis
# cd docs
# rm dev_resources/docs/IQM_Vis.*
# sphinx-apidoc -o dev_resources/docs IQM_Vis
# cd dev_resources/docs
# make clean html
# make html

Expand All @@ -66,4 +66,4 @@ jobs:
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html
publish_dir: dev_resources/docs/_build/html
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ instance/
.scrapy

# Sphinx documentation
# docs/_build/
# dev_resources/docs/_build/

# PyBuilder
target/
Expand Down Expand Up @@ -129,7 +129,7 @@ venv.bak/
# Rope project settings
.ropeproject

# mkdocs documentation
# mkdev_resources/docs documentation
/site

# mypy
Expand Down
4 changes: 2 additions & 2 deletions IQM_Vis/transforms/effects.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ def jpeg_compression(image, compression=101):
def _encode_compression(image, encoder, encode_param, uint=True):
'''
generic image encoder for jpeg, png etc
using https://docs.opencv.org/3.4/d4/da8/group__imgcodecs.html to encode/decode
for encode types: https://docs.opencv.org/3.4/d6/d87/imgcodecs_8hpp.html
using https://dev_resources/docs.opencv.org/3.4/d4/da8/group__imgcodecs.html to encode/decode
for encode types: https://dev_resources/docs.opencv.org/3.4/d6/d87/imgcodecs_8hpp.html
'''
original_size = image.shape
if uint == True:
Expand Down
2 changes: 1 addition & 1 deletion IQM_Vis/ui_wrapper.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'''
API to access making the PyQt6 UI for IQM-Vis
TODO: write docs on example usage/ what inputs etc. and what attributes that the data_store class needs
TODO: write dev_resources/docs on example usage/ what inputs etc. and what attributes that the data_store class needs
'''
# Author: Matt Clifford <[email protected]>
# License: BSD 3-Clause License
Expand Down
2 changes: 1 addition & 1 deletion IQM_Vis/utils/plot_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'''
matplotlib plotting helpers
TODO: write docs how to use these (currently just have to look at the UI code)
TODO: write dev_resources/docs how to use these (currently just have to look at the UI code)
'''
# Author: Matt Clifford <[email protected]>
# License: BSD 3-Clause License
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# IQM-Vis
Image Quality Metric Visualision. An extendable user interface for the assessment of transformations on image metrics.

Head over to the [DOCUMENTATION](https://mattclifford1.github.io/IQM-Vis/) for tutorials and package reference. Read our [PAPER](https://github.com/mattclifford1/IQM-Vis/blob/main/docs/resources/Software_paper.pdf) for in depth details of the software.
Head over to the [DOCUMENTATION](https://mattclifford1.github.io/IQM-Vis/) for tutorials and package reference. Read our [PAPER](https://github.com/mattclifford1/IQM-Vis/blob/main/dev_resources/docs/resources/Software_paper.pdf) for in depth details of the software.

### IQM's average sensitivity to tranforms
![Alt text](https://github.com/mattclifford1/IQM-Vis/blob/main/dev_resources/pics/data_graphs.gif?raw=true "Dataset UI")
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Permalink to this
<section id="module-IQM_Vis.ui_wrapper">
<span id="iqm-vis-ui-wrapper-module"></span><h2>IQM_Vis.ui_wrapper module<a class="headerlink" href="#module-IQM_Vis.ui_wrapper" title="Permalink to this heading"></a></h2>
<p>API to access making the PyQt6 UI for IQM-Vis
TODO: write docs on example usage/ what inputs etc. and what attributes that the data_store class needs</p>
TODO: write dev_resources/docs on example usage/ what inputs etc. and what attributes that the data_store class needs</p>
<dl class="py function">
<dt class="sig sig-object py" id="IQM_Vis.ui_wrapper.check_pyqt_install_deps">
<span class="sig-prename descclassname"><span class="pre">IQM_Vis.ui_wrapper.</span></span><span class="sig-name descname"><span class="pre">check_pyqt_install_deps</span></span><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="reference internal" href="_modules/IQM_Vis/ui_wrapper.html#check_pyqt_install_deps"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#IQM_Vis.ui_wrapper.check_pyqt_install_deps" title="Permalink to this definition"></a></dt>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ <h2>Submodules<a class="headerlink" href="#submodules" title="Permalink to this
<section id="module-IQM_Vis.utils.plot_utils">
<span id="iqm-vis-utils-plot-utils-module"></span><h2>IQM_Vis.utils.plot_utils module<a class="headerlink" href="#module-IQM_Vis.utils.plot_utils" title="Permalink to this heading"></a></h2>
<p>matplotlib plotting helpers
TODO: write docs how to use these (currently just have to look at the UI code)</p>
TODO: write dev_resources/docs how to use these (currently just have to look at the UI code)</p>
<dl class="py class">
<dt class="sig sig-object py" id="IQM_Vis.utils.plot_utils.bar_plotter">
<em class="property"><span class="pre">class</span><span class="w"> </span></em><span class="sig-prename descclassname"><span class="pre">IQM_Vis.utils.plot_utils.</span></span><span class="sig-name descname"><span class="pre">bar_plotter</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">bar_names</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">var_names</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">ax</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">lim</span></span></em><span class="sig-paren">)</span><a class="reference internal" href="_modules/IQM_Vis/utils/plot_utils.html#bar_plotter"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#IQM_Vis.utils.plot_utils.bar_plotter" title="Permalink to this definition"></a></dt>
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ <h1>Source code for IQM_Vis.transforms.effects</h1><div class="highlight"><pre>
<span class="k">def</span> <span class="nf">_encode_compression</span><span class="p">(</span><span class="n">image</span><span class="p">,</span> <span class="n">encoder</span><span class="p">,</span> <span class="n">encode_param</span><span class="p">,</span> <span class="n">uint</span><span class="o">=</span><span class="kc">True</span><span class="p">):</span>
<span class="sd">&#39;&#39;&#39;</span>
<span class="sd"> generic image encoder for jpeg, png etc</span>
<span class="sd"> using https://docs.opencv.org/3.4/d4/da8/group__imgcodecs.html to encode/decode</span>
<span class="sd"> for encode types: https://docs.opencv.org/3.4/d6/d87/imgcodecs_8hpp.html</span>
<span class="sd"> using https://dev_resources/docs.opencv.org/3.4/d4/da8/group__imgcodecs.html to encode/decode</span>
<span class="sd"> for encode types: https://dev_resources/docs.opencv.org/3.4/d6/d87/imgcodecs_8hpp.html</span>
<span class="sd"> &#39;&#39;&#39;</span>
<span class="n">original_size</span> <span class="o">=</span> <span class="n">image</span><span class="o">.</span><span class="n">shape</span>
<span class="k">if</span> <span class="n">uint</span> <span class="o">==</span> <span class="kc">True</span><span class="p">:</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<h1>Source code for IQM_Vis.ui_wrapper</h1><div class="highlight"><pre>
<span></span><span class="sd">&#39;&#39;&#39;</span>
<span class="sd">API to access making the PyQt6 UI for IQM-Vis</span>
<span class="sd">TODO: write docs on example usage/ what inputs etc. and what attributes that the data_store class needs</span>
<span class="sd">TODO: write dev_resources/docs on example usage/ what inputs etc. and what attributes that the data_store class needs</span>
<span class="sd">&#39;&#39;&#39;</span>
<span class="c1"># Author: Matt Clifford &lt;[email protected]&gt;</span>
<span class="c1"># License: BSD 3-Clause License</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<h1>Source code for IQM_Vis.utils.plot_utils</h1><div class="highlight"><pre>
<span></span><span class="sd">&#39;&#39;&#39;</span>
<span class="sd">matplotlib plotting helpers</span>
<span class="sd">TODO: write docs how to use these (currently just have to look at the UI code)</span>
<span class="sd">TODO: write dev_resources/docs how to use these (currently just have to look at the UI code)</span>
<span class="sd">&#39;&#39;&#39;</span>
<span class="c1"># Author: Matt Clifford &lt;[email protected]&gt;</span>
<span class="c1"># License: BSD 3-Clause License</span>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ IQM-Vis is an image quality metric visualisation toolbox to facilitate visualisi
View our demonstration `video <https://youtu.be/C6x_E0JvKqI>`_ which illustrates the features and how to use IQM-Vis.


Read our `PAPER <https://github.com/mattclifford1/IQM-Vis/blob/main/docs/resources/Software_paper.pdf>`_ for in depth details of the software.
Read our `PAPER <https://github.com/mattclifford1/IQM-Vis/blob/main/dev_resources/docs/resources/Software_paper.pdf>`_ for in depth details of the software.

Quantitive Analysis
===================
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<h1>IQM-Vis documentation<a class="headerlink" href="#iqm-vis-documentation" title="Permalink to this heading"></a></h1>
<p>IQM-Vis is an image quality metric visualisation toolbox to facilitate visualising and evaluating image quality metrics (IQMs).
View our demonstration <a class="reference external" href="https://youtu.be/C6x_E0JvKqI">video</a> which illustrates the features and how to use IQM-Vis.</p>
<p>Read our <a class="reference external" href="https://github.com/mattclifford1/IQM-Vis/blob/main/docs/resources/Software_paper.pdf">PAPER</a> for in depth details of the software.</p>
<p>Read our <a class="reference external" href="https://github.com/mattclifford1/IQM-Vis/blob/main/dev_resources/docs/resources/Software_paper.pdf">PAPER</a> for in depth details of the software.</p>
<section id="quantitive-analysis">
<h2>Quantitive Analysis<a class="headerlink" href="#quantitive-analysis" title="Permalink to this heading"></a></h2>
<p>IQM-Vis is able to provide a comprehensive analysis of IQMs through various quantitative graphs. These graphs offer practitioners a well-rounded understanding of how different IQMs perform under different scenarios without having to write any code to set up the testing procedure.</p>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">

<p>View the whole notebook: <a class="reference external" href="https://github.com/mattclifford1/IQM-Vis/tree/main/docs/notebooks/Tutorial_1-making_the_UI.ipynb">https://github.com/mattclifford1/IQM-Vis/tree/main/docs/notebooks/Tutorial_1-making_the_UI.ipynb</a></p>
<p>View the whole notebook: <a class="reference external" href="https://github.com/mattclifford1/IQM-Vis/tree/main/dev_resources/docs/notebooks/Tutorial_1-making_the_UI.ipynb">https://github.com/mattclifford1/IQM-Vis/tree/main/dev_resources/docs/notebooks/Tutorial_1-making_the_UI.ipynb</a></p>
<hr class="docutils" />
<section id="Tutorial-1:-Making-the-UI">
<h1>Tutorial 1: Making the UI<a class="headerlink" href="#Tutorial-1:-Making-the-UI" title="Permalink to this heading"></a></h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">

<p>View the whole notebook: <a class="reference external" href="https://github.com/mattclifford1/IQM-Vis/tree/main/docs/notebooks/Tutorial_2-Customisation.ipynb">https://github.com/mattclifford1/IQM-Vis/tree/main/docs/notebooks/Tutorial_2-Customisation.ipynb</a></p>
<p>View the whole notebook: <a class="reference external" href="https://github.com/mattclifford1/IQM-Vis/tree/main/dev_resources/docs/notebooks/Tutorial_2-Customisation.ipynb">https://github.com/mattclifford1/IQM-Vis/tree/main/dev_resources/docs/notebooks/Tutorial_2-Customisation.ipynb</a></p>
<hr class="docutils" />
<section id="Tutorial-2:-Simple-Customisation">
<h1>Tutorial 2: Simple Customisation<a class="headerlink" href="#Tutorial-2:-Simple-Customisation" title="Permalink to this heading"></a></h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">

<p>View the whole notebook: <a class="reference external" href="https://github.com/mattclifford1/IQM-Vis/tree/main/docs/notebooks/Tutorial_3-Advanced-Customisations.ipynb">https://github.com/mattclifford1/IQM-Vis/tree/main/docs/notebooks/Tutorial_3-Advanced-Customisations.ipynb</a></p>
<p>View the whole notebook: <a class="reference external" href="https://github.com/mattclifford1/IQM-Vis/tree/main/dev_resources/docs/notebooks/Tutorial_3-Advanced-Customisations.ipynb">https://github.com/mattclifford1/IQM-Vis/tree/main/dev_resources/docs/notebooks/Tutorial_3-Advanced-Customisations.ipynb</a></p>
<hr class="docutils" />
<section id="Tutorial-3:-Customisation-Details">
<h1>Tutorial 3: Customisation Details<a class="headerlink" href="#Tutorial-3:-Customisation-Details" title="Permalink to this heading"></a></h1>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">

<p>View the whole notebook: <a class="reference external" href="https://github.com/mattclifford1/IQM-Vis/tree/main/docs/notebooks/Tutorial_4-running_an_experiment.ipynb">https://github.com/mattclifford1/IQM-Vis/tree/main/docs/notebooks/Tutorial_4-running_an_experiment.ipynb</a></p>
<p>View the whole notebook: <a class="reference external" href="https://github.com/mattclifford1/IQM-Vis/tree/main/dev_resources/docs/notebooks/Tutorial_4-running_an_experiment.ipynb">https://github.com/mattclifford1/IQM-Vis/tree/main/dev_resources/docs/notebooks/Tutorial_4-running_an_experiment.ipynb</a></p>
<hr class="docutils" />
<section id="Tutorial-4:-Running-an-Experiment">
<h1>Tutorial 4: Running an Experiment<a class="headerlink" href="#Tutorial-4:-Running-an-Experiment" title="Permalink to this heading"></a></h1>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions dev_resources/docs/_build/html/searchindex.js

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/conf.py → dev_resources/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

# notebook links
nbsphinx_prolog = """
View the whole notebook: https://github.com/mattclifford1/IQM-Vis/tree/main/docs/{{ env.doc2path(env.docname, base=None) }}
View the whole notebook: https://github.com/mattclifford1/IQM-Vis/tree/main/dev_resources/docs/{{ env.doc2path(env.docname, base=None) }}
----
"""
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion docs/index.rst → dev_resources/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ IQM-Vis is an image quality metric visualisation toolbox to facilitate visualisi
View our demonstration `video <https://youtu.be/C6x_E0JvKqI>`_ which illustrates the features and how to use IQM-Vis.


Read our `PAPER <https://github.com/mattclifford1/IQM-Vis/blob/main/docs/resources/Software_paper.pdf>`_ for in depth details of the software.
Read our `PAPER <https://github.com/mattclifford1/IQM-Vis/blob/main/dev_resources/docs/resources/Software_paper.pdf>`_ for in depth details of the software.

Quantitive Analysis
===================
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion dev_resources/pics/ffmpeg-cmd.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# convert webm screenshot to gif for docs
# convert webm screenshot to gif for dev_resources/docs

ffmpeg -i qual.webm -vf "fps=5,scale=1080:-1:flags=lanczos,palettegen" -y 'qual-palette.png' && ffmpeg -i qual.webm -i qual-palette.png -lavfi "fps=5,scale=1080:-1:flags=lanczos [x]; [x][1:v] paletteuse" -y qual-red.gif
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions dev_resources/scripts/make_docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/bash
# Author: Matt Clifford <[email protected]>
# License: BSD 3-Clause License


rm dev_resources/docs/IQM_Vis.*
# sphinx-build -o dev_resources/docs IQM_Vis
sphinx-apidoc -o dev_resources/docs IQM_Vis IQM_Vis/metrics/NLPD_torch/*
cd dev_resources/docs
make clean html
make html
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions dev_resources/todo.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
write docs / guided examples
write dev_resources/docs / guided examples

## docs:
## dev_resources/docs:
Deatils of the data API
(advanced - how to modify it)
(how to make your own handler that conforms to the API)
Expand Down
1 change: 0 additions & 1 deletion docs/_build/html/searchindex.js

This file was deleted.

11 changes: 0 additions & 11 deletions scripts/make_docs.sh

This file was deleted.

2 changes: 1 addition & 1 deletion tests/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tests cannot be run as part of a CI pipeline as a display is required to launch

To run all tests and make badges automatically use the bash script
```
./scripts/pytest_and_badges.sh
./dev_resources/scripts/pytest_and_badges.sh
```
Other wise refer below for running the individual steps

Expand Down
2 changes: 1 addition & 1 deletion tests/reports/junit/junit.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?xml version="1.0" encoding="utf-8"?><testsuites><testsuite name="pytest" errors="0" failures="0" skipped="0" tests="0" time="2.527" timestamp="2024-10-09T11:47:32.525018" hostname="Dell-5320" /></testsuites>
<?xml version="1.0" encoding="utf-8"?><testsuites><testsuite name="pytest" errors="0" failures="0" skipped="0" tests="13" time="19.587" timestamp="2024-10-09T12:08:16.360052" hostname="Dell-5320"><testcase classname="tests.test_metrics" name="test_all_metrics_initialise" time="0.238" /><testcase classname="tests.test_metrics" name="test_all_metrics_images_initialise" time="0.225" /><testcase classname="tests.test_metrics" name="test_all_metrics_process_image" time="2.064" /><testcase classname="tests.test_metrics" name="test_all_metric_images_process_image" time="0.253" /><testcase classname="tests.test_transforms" name="test_all_transforms_init_value_no_change_image" time="0.259" /><testcase classname="tests.test_transforms" name="test_all_transforms_min_max_specified" time="0.236" /><testcase classname="tests.test_transforms" name="test_all_transforms_min_change_image" time="0.279" /><testcase classname="tests.test_transforms" name="test_all_transforms_max_change_image" time="0.316" /><testcase classname="tests.UI.test_sliders" name="test_sliders" time="1.173" /><testcase classname="tests.notebook_examples.test_1_making_the_UI" name="test_build_1" time="1.011" /><testcase classname="tests.notebook_examples.test_2_simple_customisation" name="test_build_2" time="1.299" /><testcase classname="tests.notebook_examples.test_3_customisation_details" name="test_3" time="3.005" /><testcase classname="tests.notebook_examples.test_4_experiment" name="test_experiment_runs" time="6.290" /></testsuite></testsuites>

0 comments on commit b527760

Please sign in to comment.