21 lines
560 B
Plaintext
21 lines
560 B
Plaintext
|
test: |
|
||
|
cd $TMT_SOURCE_DIR
|
||
|
# Comment out simplecov.
|
||
|
for file in \
|
||
|
spec/spec_helper.rb \
|
||
|
test/executable/suite.rb \
|
||
|
test/functional/for_redcloth.rb \
|
||
|
test/functional/suite.rb \
|
||
|
test/unit/suite.rb; do
|
||
|
sed -i "/^require 'simplecov'/ s/^/#/" "${file}"
|
||
|
done
|
||
|
export LANG=C.UTF-8
|
||
|
ruby ./test/functional/suite.rb
|
||
|
# RedCloth is not installed and will be skipped anyway
|
||
|
# ruby ./test/functional/for_redcloth.rb
|
||
|
ruby ./test/unit/suite.rb
|
||
|
require:
|
||
|
- rubygem-coderay
|
||
|
tag:
|
||
|
- rhel-buildroot
|