File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2727
2828 integration :
2929 name : Integration
30+ timeout-minutes : 120
3031 runs-on : ubuntu-latest
3132 strategy :
3233 matrix :
7576 - name : Install dependencies
7677 run : pip install tox
7778 - name : Run integration
78- run : tox -e integration
79+ # Force one single concurrent test
80+ run : tox -e integration -n 1
Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ async def main():
2424 'aws-tim' ,
2525 )
2626 await model .deploy (
27- 'cs: ubuntu-0 ' ,
27+ 'ubuntu' ,
2828 application_name = 'ubuntu' ,
29- series = 'trusty ' ,
29+ series = 'focal ' ,
3030 channel = 'stable' ,
3131 )
3232 await model .disconnect ()
Original file line number Diff line number Diff line change @@ -110,6 +110,7 @@ async def test_run(event_loop):
110110@base .bootstrapped
111111@pytest .mark .asyncio
112112async def test_run_action (event_loop ):
113+ pytest .skip ('Find a better charm for this test' )
113114 async def run_action (unit ):
114115 # unit.run() returns a juju.action.Action instance
115116 action = await unit .run_action ('add-repo' , repo = 'myrepo' )
You can’t perform that action at this time.
0 commit comments