Skip to content

Commit

Permalink
Revert "ci: disable osx tests until a new pyyaml is released" (#2213)
Browse files Browse the repository at this point in the history
pyyaml has been released and the brew formula has been updated.

This reverts commit 75c06e4.
  • Loading branch information
sergiusens committed Aug 15, 2018
1 parent d9a477e commit c3bf480
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,10 @@ jobs:
script: SNAPCRAFT_TEST_MOCK_MACHINE=armv7l sudo ./tools/travis/run_tests.sh tests/unit
- if: type != cron
script: SNAPCRAFT_TEST_MOCK_MACHINE=aarch64 sudo ./tools/travis/run_tests.sh tests/unit
# Disabled, LP: #1779855
# - stage: osx-integration-store
# if: type != cron
# os: osx
# script: SNAPCRAFT_FROM_BREW=1 ./tools/travis/run_tests.sh tests.integration.store.test_store_login_logout use-run
- stage: osx-integration-store
if: type != cron
os: osx
script: SNAPCRAFT_FROM_BREW=1 ./tools/travis/run_tests.sh tests.integration.store.test_store_login_logout use-run
- stage: snap
if: type != cron
script: sudo ./tools/travis/build_snapcraft_snap.sh
Expand Down
3 changes: 2 additions & 1 deletion requirements-devel.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ fixtures==3.0.0
mccabe==0.6.1
mypy==0.590
testscenarios==0.5.0
pexpect==4.2.0
pexpect==4.2.0; sys.platform != 'darwin'
pexpect==4.6.0; sys.platform == 'darwin'
pyftpdlib==1.4.0
pyramid==1.6
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ docopt==0.6.2
jsonschema==2.5.1
paramiko==2.4.1
progressbar33==2.4
PyYAML==3.11
PyYAML==3.11; sys.platform != 'darwin'
PyYAML==3.13; sys.platform == 'darwin'
pyxdg==0.25
requests==2.9.1
requests_unixsocket==0.1.5
Expand Down

0 comments on commit c3bf480

Please sign in to comment.