-
Notifications
You must be signed in to change notification settings - Fork 242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade to CumulusCI 2 #214
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
before calling _init_task - Modify BaseSalesforceApiTask to allow classes to hard set an api_version different from the project's package api_version. For example, PackageUploadRequest requires API 38.0 or higher and tasks using it will fail if the package api_version is lower unless the subclass sets SomeTaskClass.api_version = '38.0' - Working implementation of PackageUpload task tested against the live API
…CI into feature/2.0
fix sys path for project inits
…CI into feature/2.0
- Change RunApexTestsDebug to output JUnit and json output
run_tests_managed_debug task mappings - Added new flows for CI builds: ci_feature, ci_master, ci_beta, release_beta
use the modified instance
values for future tasks to implement release_beta flow
apextestsdb and replace with a concept of named services on the keychain. The same CLI commands (project connect_github, connect_mrbelvedere, connect_apextestsdb) are now changed to populate the new data structure
'latest_beta' which use project_config.get_latest_version() to query Github Releases to find the latest production or beta release of the package for installation
long pending times without causing API request limit issues
…CI into feature/2.0
possibility of the spider accidentally including the unpackaged/post metadata in a package release. Projects can still add this task back in by extending the ci_master flow in their cumulusci.yml
rearranged some of the task and may throw off customizations to the flows as a result.
- New cumulusci.utils.removeXmlElement for stripping all instances of an xml element from files recursively
- Ignore @testsetup decorated method when parsing debug logs in `run_tests_debug`
any method that's not a test method
version then installs the latest beta without running apex tests
and command.SalesforceBrowserTestCommand - Added new method cumulusci.utils.download_extract_zip
preserve indentation in output - Command task has two new methods available for override: _process_line and _handle_returncode
- Deleted the `build` and `ci` directories. Deleting `build` deleted the ant-salesforce.jar that was making repo 17MB bigger - Deleted `cumulusci.tasks.ant.AntTask` which can now be more configurably replaced with `cumulusci.tasks.command.Command` or `cumulusci.tasks.command.SalesforceCommand' - Deleted the CumulusCI 1.0 CLI previously under cumulusci/cli and moved cumulusci/newcli to cumulusci/cli
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Critical Changes
Changes
pip install cumulusci
--help
flag.Issues Closed
Fixes #213