Skip to content

Commit dba7096

Browse files
committed
Fix: remove unused block
Fix
1 parent 0645119 commit dba7096

File tree

2 files changed

+3
-19
lines changed

2 files changed

+3
-19
lines changed

ci-tests-data/run-tests.md

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ TODO: add some tests above and show what the output would look like in the examp
119119

120120
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.
121121

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

125125
```toml
126126
[project]
@@ -202,19 +202,3 @@ To run the above session you'd use:
202202
```bash
203203
nox -s test_mamba
204204
```
205-
206-
## IGNORE ME - testing doctest (not working now)
207-
208-
```{testcode}
209-
a = 1+2
210-
print(a)
211-
```
212-
213-
```{testoutput}
214-
215-
```
216-
217-
TODO: might be able to use doctest to run examples However so far it's not working as intended and may be extra work.
218-
https://www.sphinx-doc.org/en/master/usage/extensions/doctest.html
219-
220-
---

ci-tests-data/tests-ci.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
uses: actions/setup-python@v4
5858
with:
5959
python-version: ${{ matrix.python-version }}
60-
cache: pip
60+
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
6161

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

0 commit comments

Comments
 (0)