Increase timeouts
This commit is contained in:
parent
a687879e94
commit
21609258de
|
@ -77,7 +77,7 @@ jobs:
|
||||||
|
|
||||||
- name: Run Test
|
- name: Run Test
|
||||||
# external-plugins tests only run on schedule
|
# external-plugins tests only run on schedule
|
||||||
# if: github.event_name == 'schedule' || matrix.test_suite != 'external-plugins'
|
if: github.event_name == 'schedule' || matrix.test_suite != 'external-plugins'
|
||||||
env:
|
env:
|
||||||
AKISMET_KEY: ${{ secrets.AKISMET_KEY }}
|
AKISMET_KEY: ${{ secrets.AKISMET_KEY }}
|
||||||
run: npm run ci -- ${{ matrix.test_suite }}
|
run: npm run ci -- ${{ matrix.test_suite }}
|
||||||
|
|
|
@ -190,7 +190,7 @@ describe('Test live constraints', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
it('Should have max duration limit', async function () {
|
it('Should have max duration limit', async function () {
|
||||||
this.timeout(60000)
|
this.timeout(240000)
|
||||||
|
|
||||||
await servers[0].config.updateCustomSubConfig({
|
await servers[0].config.updateCustomSubConfig({
|
||||||
newConfig: {
|
newConfig: {
|
||||||
|
|
|
@ -447,7 +447,7 @@ describe('Test live', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
it('Should enable transcoding with some resolutions', async function () {
|
it('Should enable transcoding with some resolutions', async function () {
|
||||||
this.timeout(120000)
|
this.timeout(240000)
|
||||||
|
|
||||||
const resolutions = [ 240, 480 ]
|
const resolutions = [ 240, 480 ]
|
||||||
await updateConf(resolutions)
|
await updateConf(resolutions)
|
||||||
|
@ -499,7 +499,7 @@ describe('Test live', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
it('Should enable transcoding with some resolutions and correctly save them', async function () {
|
it('Should enable transcoding with some resolutions and correctly save them', async function () {
|
||||||
this.timeout(400_000)
|
this.timeout(500_000)
|
||||||
|
|
||||||
const resolutions = [ 240, 360, 720 ]
|
const resolutions = [ 240, 360, 720 ]
|
||||||
|
|
||||||
|
@ -586,7 +586,7 @@ describe('Test live', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
it('Should not generate an upper resolution than original file', async function () {
|
it('Should not generate an upper resolution than original file', async function () {
|
||||||
this.timeout(400_000)
|
this.timeout(500_000)
|
||||||
|
|
||||||
const resolutions = [ 240, 480 ]
|
const resolutions = [ 240, 480 ]
|
||||||
await updateConf(resolutions)
|
await updateConf(resolutions)
|
||||||
|
|
|
@ -64,8 +64,8 @@ describe('Test peertube-runner program client CLI', function () {
|
||||||
})
|
})
|
||||||
|
|
||||||
after(async function () {
|
after(async function () {
|
||||||
await cleanupTests([ server ])
|
|
||||||
|
|
||||||
peertubeRunner.kill()
|
peertubeRunner.kill()
|
||||||
|
|
||||||
|
await cleanupTests([ server ])
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue