-
-
Notifications
You must be signed in to change notification settings - Fork 5
Remove s3 requirement #49
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
base: main
Are you sure you want to change the base?
Conversation
os: ['ubuntu-20.04'] | ||
ruby-version: ['3.0', '3.1'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've added a matrix for testing. Let me know which values you want to test with.
@@ -40,6 +40,7 @@ Gem::Specification.new do |spec| | |||
# own Gemfile when using this. | |||
spec.add_development_dependency 'aws-sdk-ecr' | |||
spec.add_development_dependency 'aws-sdk-s3' | |||
spec.add_development_dependency 'webrick' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need this gem?
# require_relative 'exercism_config/environment' | ||
# require_relative 'exercism_config/determine_environment' | ||
# require_relative 'exercism_config/generate_aws_settings' | ||
# require_relative 'exercism_config/setup_dynamodb_client' | ||
# require_relative 'exercism_config/setup_ecr_client' | ||
# require_relative 'exercism_config/setup_s3_client' | ||
# require_relative 'exercism_config/retrieve_config' | ||
# require_relative 'exercism_config/retrieve_secrets' | ||
|
||
# require_relative 'exercism_config/version' | ||
# require_relative 'exercism/config' | ||
# require_relative 'exercism/secrets' | ||
# require_relative 'exercism/tooling_job' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can these be removed?
@@ -31,6 +31,7 @@ def test_config_for_production | |||
def test_config_for_development | |||
Exercism.stubs(env: ExercismConfig::Environment.new(:development)) | |||
config = ExercismConfig::RetrieveConfig.() | |||
p config |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was it intentional to add this?
@ErikSchierboom Could you add matrix testing to this please.