← Back to team overview

openlp-core team mailing list archive

[Merge] lp:~bastian-germann/openlp/unexport-tests into lp:openlp

 

Bastian Germann has proposed merging lp:~bastian-germann/openlp/unexport-tests into lp:openlp.

Commit message:
Do not export any tests* module, but include them only in sdist

Requested reviews:
  Tomas Groth (tomasgroth)

For more details, see:
https://code.launchpad.net/~bastian-germann/openlp/unexport-tests/+merge/357914

A change to CI or packaging may be required if something depends on the tests/* modules to be available on an installation.
-- 
Your team OpenLP Core is subscribed to branch lp:openlp.
=== modified file 'MANIFEST.in'
--- MANIFEST.in	2018-08-27 17:48:47 +0000
+++ MANIFEST.in	2018-10-28 11:43:31 +0000
@@ -11,7 +11,7 @@
 recursive-include documentation *
 recursive-include resources *
 recursive-include scripts *
-recursive-include tests/resources *
+recursive-include tests *
 include copyright.txt
 include LICENSE
 include README.txt

=== modified file 'setup.py'
--- setup.py	2018-10-16 20:07:00 +0000
+++ setup.py	2018-10-28 11:43:31 +0000
@@ -188,7 +188,7 @@
     author_email='raoulsnyman@xxxxxxxxxx',
     url='https://openlp.org/',
     license='GNU General Public License',
-    packages=find_packages(exclude=['ez_setup', 'tests']),
+    packages=find_packages(exclude=['ez_setup', 'tests*']),
     py_modules=['run_openlp'],
     include_package_data=True,
     zip_safe=False,


Follow ups