From d00d1ab2a28f428223e52b17052c072c64784016 Mon Sep 17 00:00:00 2001 From: Sean Molenaar Date: Sat, 29 Aug 2020 23:39:35 +0200 Subject: Create V2 mapper, Service and management commands Signed-off-by: Sean Molenaar --- .github/workflows/integration-tests.yml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to '.github') diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 14244ab2a..b94f01f8e 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -100,9 +100,16 @@ jobs: run: | cd ../server ./occ news:generate-explore --votes 100 "https://nextcloud.com/blog/feed/" + ./occ news:folder:add 'admin' 'Something' + ./occ news:folder:list 'admin' | grep 'Something' + ./occ news:folder:delete 'admin' $(./occ news:folder:list 'admin' | grep 'Something' -1 | head -1 | grep -oE '[0-9]*') + ./occ news:feed:add 'admin' "https://nextcloud.com/blog/feed/" + ./occ news:feed:list 'admin' | grep 'nextcloud\.com' + ./occ news:feed:delete 'admin' $(./occ news:feed:list 'admin' | grep 'nextcloud\.com' -1 | head -1 | grep -oE '[0-9]*') - name: Prep PHP tests run: cd ../server/apps/news && make php-test-dependencies - name: Integration tests run: cd ../server/apps/news && make integration-test + -- cgit v1.2.3