Delete python bytecode file
Delete python bytecode including pyo Change-Id: Ia967e03e5b46ecdf25625a8554d26c3182ed7b6d
This commit is contained in:
parent
12748bfd41
commit
5c82141a01
26
tox.ini
26
tox.ini
@ -60,7 +60,7 @@ whitelist_externals = find
|
|||||||
setenv =
|
setenv =
|
||||||
DOCKER_BUILD_TEST=1
|
DOCKER_BUILD_TEST=1
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
||||||
testr run test_build.BuildTestCentosBinary
|
testr run test_build.BuildTestCentosBinary
|
||||||
{toxinidir}/tools/dump_info.sh
|
{toxinidir}/tools/dump_info.sh
|
||||||
@ -71,7 +71,7 @@ whitelist_externals = find
|
|||||||
setenv =
|
setenv =
|
||||||
DOCKER_BUILD_TEST=1
|
DOCKER_BUILD_TEST=1
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
||||||
testr run test_build.BuildTestCentosSource
|
testr run test_build.BuildTestCentosSource
|
||||||
{toxinidir}/tools/dump_info.sh
|
{toxinidir}/tools/dump_info.sh
|
||||||
@ -82,7 +82,7 @@ whitelist_externals = find
|
|||||||
setenv =
|
setenv =
|
||||||
DOCKER_BUILD_TEST=1
|
DOCKER_BUILD_TEST=1
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
||||||
testr run test_build.BuildTestUbuntuBinary
|
testr run test_build.BuildTestUbuntuBinary
|
||||||
{toxinidir}/tools/dump_info.sh
|
{toxinidir}/tools/dump_info.sh
|
||||||
@ -93,7 +93,7 @@ whitelist_externals = find
|
|||||||
setenv =
|
setenv =
|
||||||
DOCKER_BUILD_TEST=1
|
DOCKER_BUILD_TEST=1
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
||||||
testr run test_build.BuildTestUbuntuSource
|
testr run test_build.BuildTestUbuntuSource
|
||||||
{toxinidir}/tools/dump_info.sh
|
{toxinidir}/tools/dump_info.sh
|
||||||
@ -104,7 +104,7 @@ whitelist_externals = find
|
|||||||
setenv =
|
setenv =
|
||||||
DOCKER_BUILD_TEST=1
|
DOCKER_BUILD_TEST=1
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
||||||
testr run test_build.BuildTestOracleLinuxBinary
|
testr run test_build.BuildTestOracleLinuxBinary
|
||||||
{toxinidir}/tools/dump_info.sh
|
{toxinidir}/tools/dump_info.sh
|
||||||
@ -115,7 +115,7 @@ whitelist_externals = find
|
|||||||
setenv =
|
setenv =
|
||||||
DOCKER_BUILD_TEST=1
|
DOCKER_BUILD_TEST=1
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
||||||
testr run test_build.BuildTestOracleLinuxSource
|
testr run test_build.BuildTestOracleLinuxSource
|
||||||
{toxinidir}/tools/dump_info.sh
|
{toxinidir}/tools/dump_info.sh
|
||||||
@ -127,7 +127,7 @@ whitelist_externals = find
|
|||||||
setenv =
|
setenv =
|
||||||
DOCKER_BUILD_TEST=1
|
DOCKER_BUILD_TEST=1
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
||||||
testr run test_build.DeployTestCentosBinary
|
testr run test_build.DeployTestCentosBinary
|
||||||
sudo {toxinidir}/tools/deploy_aio.sh centos binary
|
sudo {toxinidir}/tools/deploy_aio.sh centos binary
|
||||||
@ -140,7 +140,7 @@ whitelist_externals = find
|
|||||||
setenv =
|
setenv =
|
||||||
DOCKER_BUILD_TEST=1
|
DOCKER_BUILD_TEST=1
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
||||||
testr run test_build.DeployTestCentosSource
|
testr run test_build.DeployTestCentosSource
|
||||||
sudo {toxinidir}/tools/deploy_aio.sh centos source
|
sudo {toxinidir}/tools/deploy_aio.sh centos source
|
||||||
@ -153,7 +153,7 @@ whitelist_externals = find
|
|||||||
setenv =
|
setenv =
|
||||||
DOCKER_BUILD_TEST=1
|
DOCKER_BUILD_TEST=1
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
||||||
testr run test_build.DeployTestOracleLinuxBinary
|
testr run test_build.DeployTestOracleLinuxBinary
|
||||||
sudo {toxinidir}/tools/deploy_aio.sh oraclelinux binary
|
sudo {toxinidir}/tools/deploy_aio.sh oraclelinux binary
|
||||||
@ -166,7 +166,7 @@ whitelist_externals = find
|
|||||||
setenv =
|
setenv =
|
||||||
DOCKER_BUILD_TEST=1
|
DOCKER_BUILD_TEST=1
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
||||||
testr run test_build.DeployTestOracleLinuxSource
|
testr run test_build.DeployTestOracleLinuxSource
|
||||||
sudo {toxinidir}/tools/deploy_aio.sh oraclelinux source
|
sudo {toxinidir}/tools/deploy_aio.sh oraclelinux source
|
||||||
@ -178,7 +178,7 @@ whitelist_externals = find
|
|||||||
setenv =
|
setenv =
|
||||||
DOCKER_BUILD_TEST=1
|
DOCKER_BUILD_TEST=1
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
||||||
testr run test_build.DeployTestUbuntuBinary
|
testr run test_build.DeployTestUbuntuBinary
|
||||||
sudo {toxinidir}/tools/deploy_aio.sh ubuntu binary
|
sudo {toxinidir}/tools/deploy_aio.sh ubuntu binary
|
||||||
@ -191,7 +191,7 @@ whitelist_externals = find
|
|||||||
setenv =
|
setenv =
|
||||||
DOCKER_BUILD_TEST=1
|
DOCKER_BUILD_TEST=1
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
||||||
testr run test_build.DeployTestUbuntuSource
|
testr run test_build.DeployTestUbuntuSource
|
||||||
sudo {toxinidir}/tools/deploy_aio.sh ubuntu source
|
sudo {toxinidir}/tools/deploy_aio.sh ubuntu source
|
||||||
@ -203,7 +203,7 @@ whitelist_externals = find
|
|||||||
setenv =
|
setenv =
|
||||||
DOCKER_BUILD_TEST=1
|
DOCKER_BUILD_TEST=1
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.pyc" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
bash -c "if [ ! -d .testrepository ]; then testr init; fi"
|
||||||
testr run test_build.BuildTestUbuntuSource
|
testr run test_build.BuildTestUbuntuSource
|
||||||
{toxinidir}/tools/dump_info.sh
|
{toxinidir}/tools/dump_info.sh
|
||||||
|
Loading…
Reference in New Issue
Block a user