Remove virtualenv dependency and include unittest Resolves: rhbz1974221 Signed-off-by: Kairui Song <kasong@redhat.com>
11 lines
158 B
Bash
Executable File
11 lines
158 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Install from pip since they are missing in RHEL
|
|
pip install --ignore-installed pylint nose
|
|
|
|
# Run test
|
|
pushd source
|
|
make test
|
|
make unittest
|
|
popd
|