Skip to content

Commit

Permalink
Update to support SCL Python 3.6 (rh-python36)
Browse files Browse the repository at this point in the history
- Add 'rh-python36' as default for version "" and "3"
- Allow 'rh-python35' for RHEL 6 (remove special case)
- Update tests accordingly
- Fixes poise#125
  • Loading branch information
jflemer-ndp committed Jul 12, 2019
1 parent eeb0fc0 commit 1cb5008
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions test/spec/python_providers/scl_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,16 @@
it_behaves_like 'scl provider', 'rh-python36'
end # /context with version "3"

context 'with version "3.5"' do
let(:python_version) { '3.5' }
it_behaves_like 'scl provider', 'rh-python35'
end # /context with version "3"

context 'with version "3.4"' do
let(:python_version) { '3.4' }
it_behaves_like 'scl provider', 'rh-python34'
end # /context with version "3"

context 'with version "3.3"' do
let(:python_version) { '3.3' }
it_behaves_like 'scl provider', 'python33'
Expand Down

0 comments on commit 1cb5008

Please sign in to comment.