{"id":15366336,"url":"https://github.com/petrbroz/forge-continuous-testing","last_synced_at":"2025-08-07T04:41:49.981Z","repository":{"id":53216036,"uuid":"225568653","full_name":"petrbroz/forge-continuous-testing","owner":"petrbroz","description":"Experimental test suite for automated testing of Autodesk Forge services.","archived":false,"fork":false,"pushed_at":"2023-05-07T10:48:02.000Z","size":1185,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-02-17T20:41:20.486Z","etag":null,"topics":["autodesk-forge","continuous-testing","forge-model-derivative","travis-ci"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/petrbroz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-12-03T08:29:43.000Z","updated_at":"2021-04-01T06:53:26.000Z","dependencies_parsed_at":"2024-10-31T01:11:48.374Z","dependency_job_id":"23006d90-63bb-4ba0-9700-7899495dbce4","html_url":"https://github.com/petrbroz/forge-continuous-testing","commit_stats":{"total_commits":25,"total_committers":2,"mean_commits":12.5,"dds":0.07999999999999996,"last_synced_commit":"737773194b1dfb41d11dba3c35b3bad679c88014"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petrbroz%2Fforge-continuous-testing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petrbroz%2Fforge-continuous-testing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petrbroz%2Fforge-continuous-testing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/petrbroz%2Fforge-continuous-testing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/petrbroz","download_url":"https://codeload.github.com/petrbroz/forge-continuous-testing/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247313894,"owners_count":20918715,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["autodesk-forge","continuous-testing","forge-model-derivative","travis-ci"],"created_at":"2024-10-01T13:18:33.926Z","updated_at":"2025-04-05T09:24:21.847Z","avatar_url":"https://github.com/petrbroz.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# forge-continuous-testing\n\n\u003e Experimental automated testing of [Autodesk Forge](https://forge.autodesk.com) services using [Travis CI](https://travis-ci.org).\n\n| Branch      | Status |\n|-------------|--------|\n| master      | [![Build Status](https://travis-ci.org/petrbroz/forge-continuous-testing.svg?branch=master)](https://travis-ci.org/petrbroz/forge-continuous-testing) |\n| tests/rvt   | [![Build Status](https://travis-ci.org/petrbroz/forge-continuous-testing.svg?branch=tests%2Frvt)](https://travis-ci.org/petrbroz/forge-continuous-testing) |\n| tests/iam   | [![Build Status](https://travis-ci.org/petrbroz/forge-continuous-testing.svg?branch=tests%2Fiam)](https://travis-ci.org/petrbroz/forge-continuous-testing) |\n| tests/dwfx  | [![Build Status](https://travis-ci.org/petrbroz/forge-continuous-testing.svg?branch=tests%2Fdwfx)](https://travis-ci.org/petrbroz/forge-continuous-testing) |\n| tests/nwd   | [![Build Status](https://travis-ci.org/petrbroz/forge-continuous-testing.svg?branch=tests%2Fnwd)](https://travis-ci.org/petrbroz/forge-continuous-testing) |\n\n## How To\n\n\u003e Note: most of the following actions can only be taken by collaborators of this github repo.\n\u003e If you're not a collaborator yet, ask the admin of this repo to be invited.\n\n### Manually triggering a new test\n\nGo to https://travis-ci.org/petrbroz/forge-continuous-testing, and choose the _Trigger build_ option in the _More options_ menu:\n\n![Custom test](./docs/custom-build.png)\n\nFind the branch you want to test, and start the test using the _Trigger custom build_ button.\n\n\u003e Currently we're testing different types of file formats in their own branches (so that they can run as separate builds/jobs in Travis).\n\u003e For example, the _tests/rvt_ branch configures a couple of sample Revit models in the _.travis.yml_ config file.\n\n![Run custom test](./docs/custom-build-run.png)\n\n### Manually restarting a test\n\nGo to https://travis-ci.org/petrbroz/forge-continuous-testing/builds, and find the failing build/test.\nOn the build page you can choose to restart the entire build using the _Restart build_ button, or just\nsome of the build \"jobs\" (representing individual sample files of the tested file format):\n\n![Restart a test](./docs/restart-build.png)\n\n### Updating a test baseline\n\nFollow the same steps as when manually triggering a new test, but customize the config to pass the `--update` flag\nto the test script. Currently the only test available is _tests/model-derivative/basic.js_ (accepting a bucket key\nand an object key as its two parameters), so the modified config would look like this:\n\n```\nscript: node tests/model-derivative/basic.js $FORGE_BUCKET_KEY $FORGE_OBJECT_KEY --update\n```\n\n![Update test baseline](./docs/update-baseline.png)\n\n### Skipping tests when updating the code\n\nIf you want to skip a build when submitting code changes, use `[skip travis]` or a [similar phrase](https://docs.travis-ci.com/user/customizing-the-build/#skipping-a-build) in your commit message.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetrbroz%2Fforge-continuous-testing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpetrbroz%2Fforge-continuous-testing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpetrbroz%2Fforge-continuous-testing/lists"}