~james-page/neutron/august-fixes

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Adam Gandelman
  • Date: 2013-08-01 19:33:56 UTC
  • mfrom: (175.1.1 neutron)
  • Revision ID: adamg@canonical.com-20130801193356-dfz7vpmyl28memas
The neutron test suite absolutely kills our build system when run with maximum concurrency.  Limit it testr to run on only a single CPU. I propose we do this across most projects as our Jenkins has been noticeably bogged down since upstream migrated to testr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
19
19
override_dh_auto_test:
20
 
        ./run_tests.sh -N -P
 
20
        ./run_tests.sh -N -P --concurrency=1
21
21
endif