mirror of
https://github.com/pmeier/light-the-torch.git
synced 2024-09-08 23:29:28 +03:00
* replace tox with doit (#42)
* replace tox with doit
* fix dev env setup
* fix dev env setup
* fix dev env setup
* apply fixes to all workflows
* try fix path
* try pip cache
* fix output location
* fix quotes
* fix quotes
* move path file extraction to script
* setup cache
* remove debug step
* add pre-commit caching
* rewrite ltt to wrap pip directly rather than use its internals
* add publish task and fix workflow
* fix publish
* update pre-commit hooks
* remove mypy
* cleanup
* add setup task
* fix some bugs
* disable output capturing on publish task
* fix publish task
* install wheel package in CI dev setup
* Rewrite smoke and computation backend tests (#44)
* fix publish task
* install wheel package in CI dev setup
* fix computation backend tests
* fix smoke tests
* delete other tests for now
* fix test workflow
* add CLI tests after rewrite (#46)
* rewrite README (#45)
* rewrite README
* update how does it work
* refactor the why section
* fix typo
Co-authored-by: James Butler <jamesobutler@users.noreply.github.com>
Co-authored-by: James Butler <jamesobutler@users.noreply.github.com>
* try appdirs to find pip cache path (#48)
* try appdirs to find pip cache path
* print
* fix app_author
* cleanup
* fix
* cleanup
* more cleanup
* refactor dodo (#47)
* refactor dodo
* fix test CI
* address review comments
Co-authored-by: Tony Fast <tony.fast@gmail.com>
Co-authored-by: Tony Fast <tony.fast@gmail.com>
* add default tasks (#49)
* fix module entrypoint (#50)
* fix candidate selection (#52)
* remove test task passthrough (#53)
* disable ROCm wheels (#54)
* fix ROCm deselection (#56)
* relax ROCm deselection even further (#57)
* add naive torch install test (#58)
* add naive torch install test
* trigger CI
* add cpuonly check
* don't fail fast
* add pytorch channel to the test matrix
* don't test LTS channel on 3.10
* add check without specifying the channel
* Revert "add check without specifying the channel"
This reverts commit 0842abf50f.
* use extra index rathe than find links for link patching (#59)
* update README
* fix Windows install
Co-authored-by: James Butler <jamesobutler@users.noreply.github.com>
Co-authored-by: Tony Fast <tony.fast@gmail.com>
17 lines
341 B
INI
17 lines
341 B
INI
[pytest]
|
|
;See https://docs.pytest.org/en/latest/reference.html#ini-options-ref for available
|
|
; options
|
|
|
|
addopts =
|
|
# show summary of all tests that did not pass
|
|
-ra
|
|
# Make tracebacks shorter
|
|
--tb=short
|
|
# enable all warnings
|
|
-Wd
|
|
# coverage
|
|
--cov=light_the_torch
|
|
--cov-config=.coveragerc
|
|
xfail_strict = True
|
|
testpaths = tests
|