Skip to content
Snippets Groups Projects
Commit 231e959d authored by Guillaume HEUSCH's avatar Guillaume HEUSCH
Browse files

[conda] update recipe: remove the build-skip stuff, added new scripts as entry points

parent 3201fc40
Branches
Tags
No related merge requests found
Pipeline #28048 failed
......@@ -6,9 +6,12 @@ package:
version: {{ environ.get('BOB_PACKAGE_VERSION', '0.0.1') }}
build:
skip: true # [not linux]
entry_points:
- train_cnn.py = bob.learn.pytorch.scripts.train_cnn:main
- train_mccnn.py = bob.learn.pytorch.scripts.train_mccnn:main
- train_fasnet.py = bob.learn.pytorch.scripts.train_fasnet:main
- train_dcgan.py = bob.learn.pytorch.scripts.train_dcgan:main
- train_conditionalgan.py = bob.learn.pytorch.scripts.train_conditionalgan:main
number: {{ environ.get('BOB_BUILD_NUMBER', 0) }}
run_exports:
- {{ pin_subpackage(name) }}
......@@ -49,6 +52,10 @@ test:
- {{ name }}
commands:
- train_cnn.py --help
- train_mccnn.py --help
- train_fasnet.py --help
- train_dcgan.py --help
- train_conditionalgan.py --help
- nosetests --with-coverage --cover-package={{ name }} -sv {{ name }}
- sphinx-build -aEW {{ project_dir }}/doc {{ project_dir }}/sphinx
- sphinx-build -aEb doctest {{ project_dir }}/doc sphinx
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment