Skip to content

Commit

Permalink
Fix: remove unused block
Browse files Browse the repository at this point in the history
Fix
  • Loading branch information
lwasser committed Jan 3, 2024
1 parent 0645119 commit dba7096
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 19 deletions.
20 changes: 2 additions & 18 deletions ci-tests-data/run-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ TODO: add some tests above and show what the output would look like in the examp

Below is an example of setting up nox to run tests using `venv` which is the built in environment manager that comes with base Python.

Note that the example below assumes that you have setup your pyproject.toml to declare test dependencies in a way that pip
can understand. And example of that setup is below.
Note that the example below assumes that you have [setup your `pyproject.toml` to declare test dependencies in a way that pip
can understand](../package-structure-code/declare-dependencies.md). And example of that setup is below.

```toml
[project]
Expand Down Expand Up @@ -202,19 +202,3 @@ To run the above session you'd use:
```bash
nox -s test_mamba
```

## IGNORE ME - testing doctest (not working now)

```{testcode}
a = 1+2
print(a)
```

```{testoutput}
```

TODO: might be able to use doctest to run examples However so far it's not working as intended and may be extra work.
https://www.sphinx-doc.org/en/master/usage/extensions/doctest.html

---
2 changes: 1 addition & 1 deletion ci-tests-data/tests-ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache: pip # By adding cache here, you are telling actions to reuse installed dependencies rather than re-downloading and installing them each time. This speeds up your workflow

# This step and the step below are an optional steps to cache variables to make your build faster / more efficient
- name: Set Variables
Expand Down

0 comments on commit dba7096

Please sign in to comment.