Skip to content

Commit f34d4ac

Browse files
committed
explicitly include MD files & fix release test
1 parent c1cf3e9 commit f34d4ac

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
include gittaggers.py Makefile
22
include schema_salad/tests/*
3+
include schema_salad/tests/test_schema/*.md
4+
include schema_salad/tests/test_schema/*.yml
5+
include schema_salad/tests/test_schema/*.cwl
36
include schema_salad/metaschema/*
47
global-exclude *.pyc

release-test.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,11 @@ rm lib/python-wheels/setuptools* \
5858
&& pip install setuptools==20.10.1
5959
pip install ${package}*tar.gz
6060
pip install pytest
61-
tar xzf ${package}*tar.gz
62-
cd ${package}*
61+
mkdir out
62+
tar --extract --directory=out -z -f ${package}*.tar.gz
63+
cd out/${package}*
6364
make dist
6465
make test
6566
pip uninstall -y ${package} || true; pip uninstall -y ${package} || true; make install
6667
mkdir ../not-${module}
67-
pushd ../not-${module} ; ../bin/${run_tests}; popd
68+
pushd ../not-${module} ; ../../bin/${run_tests}; popd

0 commit comments

Comments
 (0)