├── .gitignore ├── .update-copyright.conf ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Gemfile ├── LICENSE.md ├── Makefile ├── README.md ├── _config.yml ├── _episodes ├── .gitkeep ├── 01-basics.md ├── 02-assertions.md ├── 03-exceptions.md ├── 03a-dbc.md ├── 04-units.md ├── 05-pytest.md ├── 06-edges.md ├── 07-integration.md ├── 08-ci.md ├── 09-tdd.md ├── 10-fixtures.md └── reference.md ├── _episodes_rmd ├── .gitkeep └── data │ └── .gitkeep ├── _extras ├── .gitkeep ├── about.md ├── discuss.md ├── figures.md └── guide.md ├── aio.md ├── bin ├── chunk-options.R ├── extract_figures.py ├── generate_md_episodes.R ├── knit_lessons.sh ├── lesson_check.py ├── lesson_initialize.py ├── markdown_ast.rb ├── repo_check.py ├── test_lesson_check.py ├── util.py └── workshop_check.py ├── code ├── .gitkeep ├── mean.py ├── mod.py ├── mynum.py └── test_mean.py ├── data └── .gitkeep ├── fig └── .gitkeep ├── files ├── .gitkeep ├── 02-assertions.ipynb └── 03-exceptions.ipynb ├── img ├── software-carpentry-banner.png └── std.png ├── index.md ├── reference.md ├── requirements.txt └── setup.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/.gitignore -------------------------------------------------------------------------------- /.update-copyright.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/.update-copyright.conf -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_config.yml -------------------------------------------------------------------------------- /_episodes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_episodes/01-basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_episodes/01-basics.md -------------------------------------------------------------------------------- /_episodes/02-assertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_episodes/02-assertions.md -------------------------------------------------------------------------------- /_episodes/03-exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_episodes/03-exceptions.md -------------------------------------------------------------------------------- /_episodes/03a-dbc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_episodes/03a-dbc.md -------------------------------------------------------------------------------- /_episodes/04-units.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_episodes/04-units.md -------------------------------------------------------------------------------- /_episodes/05-pytest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_episodes/05-pytest.md -------------------------------------------------------------------------------- /_episodes/06-edges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_episodes/06-edges.md -------------------------------------------------------------------------------- /_episodes/07-integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_episodes/07-integration.md -------------------------------------------------------------------------------- /_episodes/08-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_episodes/08-ci.md -------------------------------------------------------------------------------- /_episodes/09-tdd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_episodes/09-tdd.md -------------------------------------------------------------------------------- /_episodes/10-fixtures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_episodes/10-fixtures.md -------------------------------------------------------------------------------- /_episodes/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_episodes/reference.md -------------------------------------------------------------------------------- /_episodes_rmd/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_episodes_rmd/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_extras/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_extras/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_extras/about.md -------------------------------------------------------------------------------- /_extras/discuss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_extras/discuss.md -------------------------------------------------------------------------------- /_extras/figures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/_extras/figures.md -------------------------------------------------------------------------------- /_extras/guide.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: page 3 | title: "Instructor Notes" 4 | permalink: /guide/ 5 | --- 6 | -------------------------------------------------------------------------------- /aio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/aio.md -------------------------------------------------------------------------------- /bin/chunk-options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/bin/chunk-options.R -------------------------------------------------------------------------------- /bin/extract_figures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/bin/extract_figures.py -------------------------------------------------------------------------------- /bin/generate_md_episodes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/bin/generate_md_episodes.R -------------------------------------------------------------------------------- /bin/knit_lessons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/bin/knit_lessons.sh -------------------------------------------------------------------------------- /bin/lesson_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/bin/lesson_check.py -------------------------------------------------------------------------------- /bin/lesson_initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/bin/lesson_initialize.py -------------------------------------------------------------------------------- /bin/markdown_ast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/bin/markdown_ast.rb -------------------------------------------------------------------------------- /bin/repo_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/bin/repo_check.py -------------------------------------------------------------------------------- /bin/test_lesson_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/bin/test_lesson_check.py -------------------------------------------------------------------------------- /bin/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/bin/util.py -------------------------------------------------------------------------------- /bin/workshop_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/bin/workshop_check.py -------------------------------------------------------------------------------- /code/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/code/mean.py -------------------------------------------------------------------------------- /code/mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/code/mod.py -------------------------------------------------------------------------------- /code/mynum.py: -------------------------------------------------------------------------------- 1 | a = 401.0/200.0 2 | -------------------------------------------------------------------------------- /code/test_mean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/code/test_mean.py -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fig/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/02-assertions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/files/02-assertions.ipynb -------------------------------------------------------------------------------- /files/03-exceptions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/files/03-exceptions.ipynb -------------------------------------------------------------------------------- /img/software-carpentry-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/img/software-carpentry-banner.png -------------------------------------------------------------------------------- /img/std.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/img/std.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/index.md -------------------------------------------------------------------------------- /reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: reference 3 | --- 4 | 5 | ## Glossary 6 | 7 | FIXME 8 | 9 | {% include links.md %} 10 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | CommonMark 2 | pandocfilters 3 | PyYAML 4 | update-copyright 5 | -------------------------------------------------------------------------------- /setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/python-testing/HEAD/setup.md --------------------------------------------------------------------------------