Skip to content

Commit 5d1a7ab

Browse files
authored
Remove dead links in quick-reference.md
1 parent 963bac5 commit 5d1a7ab

1 file changed

Lines changed: 4 additions & 14 deletions

File tree

content/quick-reference.md

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ script which does some tests.
3939

4040
(pytest-ref)=
4141

42-
### pytest_
42+
### pytest
4343

4444
- Python
45-
- <http://doc.pytest.org>
45+
- <https://docs.pytest.org/>
4646
- Installable via Conda or pip.
4747
- Easy to use: Prefix a function with `test_` and the test runner will execute it.
4848
No need to subclass anything.
@@ -60,7 +60,6 @@ def test_get_word_lengths():
6060
assert get_word_lengths(text) == [5, 8, 3, 7, 4, 3, 6]
6161
```
6262

63-
- [Example output](https://travis-ci.org/bast/pytest-demo/builds/104182942)
6463
- [Example project](https://github.com/bast/pytest-demo)
6564

6665
---
@@ -185,9 +184,6 @@ TEST_CASE("Use the example library to add numbers", "[add]") {
185184
}
186185
```
187186
188-
- [Example output](https://github.com/ENCCS/catch2-demo/runs/1959590399?check_suite_focus=true)
189-
- [Example project](https://github.com/ENCCS/catch2-demo)
190-
191187
---
192188
193189
(google-test)=
@@ -212,7 +208,6 @@ TEST(example, add) {
212208
}
213209
```
214210

215-
- [Example output](https://travis-ci.org/bast/gtest-demo/builds/104190982)
216211
- [Example project](https://github.com/bast/gtest-demo)
217212

218213
---
@@ -238,9 +233,6 @@ BOOST_AUTO_TEST_CASE( add )
238233
}
239234
```
240235
241-
- [Example output](https://github.com/ENCCS/boost-test-demo/runs/1959592305?check_suite_focus=true)
242-
- [Example project](https://github.com/ENCCS/boost-test-demo)
243-
244236
---
245237
246238
(pfunit)=
@@ -282,7 +274,6 @@ You can then compile using this script:
282274
:language: bash
283275
```
284276

285-
- [Example output](https://travis-ci.org/bast/pfunit-demo/builds/104193675)
286277
- [Example project](https://github.com/bast/pfunit-demo)
287278

288279
---
@@ -293,9 +284,9 @@ Each of these are web services to handle testing, free for open source
293284
projects.
294285

295286
- [GitHub Actions](https://github.com/features/actions) (we will
296-
demonstrate in next episode)
287+
demonstrate this in the next episode)
297288
- [GitLab CI](https://about.gitlab.com/features/gitlab-ci-cd/)
298-
(we will demonstrate in next episode)
289+
(we will demonstrate this in the next episode)
299290
- [Azure Pipelines](https://azure.microsoft.com/en-us/services/devops/pipelines/)
300291
- [Coveralls](https://coveralls.io)
301292
- [Codecov](https://codecov.io)
@@ -305,7 +296,6 @@ projects.
305296
## Good resources
306297

307298
- [Getting Started With Testing in Python](https://realpython.com/python-testing/)
308-
- [Introductions to Python Testing Frameworks](http://pythontesting.net/start-here/)
309299

310300

311301
```{keypoints}

0 commit comments

Comments
 (0)