├── .github └── workflows │ └── pipeline.yml ├── .gitignore ├── README.md ├── analyser ├── config.json └── output │ └── .gitkeep ├── ci ├── docker │ └── docker-compose.yml └── scripts │ ├── down_env.sh │ ├── list-files.sh │ └── up_env.sh ├── protheus ├── apo │ └── .gitkeep ├── appserver.ini ├── dbaccess.ini ├── includes │ └── .gitkeep └── systemload │ └── .gitkeep ├── src ├── PECRMA980.prw └── customization.prw └── tir ├── CRMA980TESTCASE.py ├── CRMA980TESTSUITE.py ├── config.json └── teste.py /.github/workflows/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/.github/workflows/pipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/README.md -------------------------------------------------------------------------------- /analyser/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/analyser/config.json -------------------------------------------------------------------------------- /analyser/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/ci/docker/docker-compose.yml -------------------------------------------------------------------------------- /ci/scripts/down_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/ci/scripts/down_env.sh -------------------------------------------------------------------------------- /ci/scripts/list-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/ci/scripts/list-files.sh -------------------------------------------------------------------------------- /ci/scripts/up_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/ci/scripts/up_env.sh -------------------------------------------------------------------------------- /protheus/apo/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protheus/appserver.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/protheus/appserver.ini -------------------------------------------------------------------------------- /protheus/dbaccess.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/protheus/dbaccess.ini -------------------------------------------------------------------------------- /protheus/includes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /protheus/systemload/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/PECRMA980.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/src/PECRMA980.prw -------------------------------------------------------------------------------- /src/customization.prw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/src/customization.prw -------------------------------------------------------------------------------- /tir/CRMA980TESTCASE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/tir/CRMA980TESTCASE.py -------------------------------------------------------------------------------- /tir/CRMA980TESTSUITE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/tir/CRMA980TESTSUITE.py -------------------------------------------------------------------------------- /tir/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/tir/config.json -------------------------------------------------------------------------------- /tir/teste.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totvs/protheus-ci-universo/HEAD/tir/teste.py --------------------------------------------------------------------------------