Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

buildspec.yml 400 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  1. version: 0.2
  2. phases:
  3. install:
  4. runtime-versions:
  5. python: 3.11
  6. build:
  7. commands:
  8. # Call the test python code
  9. - python test/test.py --import-build-config $CODEBUILD_SRC_DIR_BuildArtifact/staging-config-export.json --export-test-results $EXPORT_TEST_RESULTS
  10. # Show the test results file
  11. - cat $EXPORT_TEST_RESULTS
  12. artifacts:
  13. files:
  14. - $EXPORT_TEST_RESULTS
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...