NXDRIVE-3158: [Implementation] - Multi-select capability via unified “Add Items” dialog #4994
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Functional tests LTS 2023 | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/functional_tests_2023.yml" | |
| - "nxdrive/**/*.py" | |
| - "tests/*.py" | |
| - "tests/functional/*.py" | |
| - "tests/functional/gui/*.py" | |
| - "tools/deps/*.txt" | |
| push: | |
| branches: [master] | |
| paths: | |
| - "nxdrive/**/*.py" | |
| - "tests/*.py" | |
| - "tests/functional/*.py" | |
| env: | |
| NXDRIVE_TEST_NUXEO_URL: https://drive-2023.beta.nuxeocloud.com/nuxeo | |
| NXDRIVE_TEST_USERNAME: ${{ secrets.NXDRIVE_2023_TEST_USERNAME }} | |
| NXDRIVE_TEST_PASSWORD: ${{ secrets.NXDRIVE_2023_TEST_PASSWORD }} | |
| jobs: | |
| functional-tests-linux: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.13 # XXX_PYTHON | |
| - uses: actions/cache@v5 | |
| with: | |
| path: ~/.cache/pip | |
| key: ${{ runner.os }}-pip-${{ hashFiles('tools/deps/requirements.txt', 'tools/deps/requirements-tests.txt', 'tools/deps/requirements-tox.txt') }} | |
| restore-keys: ${{ runner.os }}-pip-${{ hashFiles('tools/deps/requirements.txt', 'tools/deps/requirements-tests.txt', 'tools/deps/requirements-tox.txt') }} | |
| - uses: actions/cache@v5 | |
| with: | |
| path: .tox | |
| key: ${{ runner.os }}-tox-${{ hashFiles('tools/deps/requirements.txt', 'tools/deps/requirements-tests.txt', 'tools/deps/requirements-tox.txt') }} | |
| restore-keys: ${{ runner.os }}-tox-${{ hashFiles('tools/deps/requirements.txt', 'tools/deps/requirements-tests.txt', 'tools/deps/requirements-tox.txt') }} | |
| - name: Install system dependencies | |
| run: | | |
| sudo apt install xclip | |
| Xvfb :99 -screen 0 1920x1080x24+32 & | |
| - name: Install Linux dependencies | |
| run: bash .github/workflows/linux_dependencies.sh | |
| - name: Install tox | |
| run: python -m pip install -r tools/deps/requirements-tox.txt | |
| - name: Functional tests | |
| run: tox -e ft | |
| env: | |
| DISPLAY: ":99" | |
| - name: Upload coverage to Codecov | |
| if: ${{ success() || failure() }} | |
| uses: codecov/codecov-action@v6 | |
| with: | |
| token: ${{secrets.CODECOV_TOKEN}} | |
| files: ./coverage.xml | |
| flags: functional | |
| env_vars: OS,PYTHON | |
| functional-tests-macos: | |
| runs-on: "macos-15-intel" | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.13 # XXX_PYTHON | |
| - uses: actions/cache@v5 | |
| with: | |
| path: ~/Library/Caches/pip | |
| key: ${{ runner.os }}-pip-${{ hashFiles('tools/deps/requirements.txt', 'tools/deps/requirements-tests.txt', 'tools/deps/requirements-tox.txt') }} | |
| restore-keys: ${{ runner.os }}-pip-${{ hashFiles('tools/deps/requirements.txt', 'tools/deps/requirements-tests.txt', 'tools/deps/requirements-tox.txt') }} | |
| - uses: actions/cache@v5 | |
| with: | |
| path: .tox | |
| key: ${{ runner.os }}-tox-${{ hashFiles('tools/deps/requirements.txt', 'tools/deps/requirements-tests.txt', 'tools/deps/requirements-tox.txt') }} | |
| restore-keys: ${{ runner.os }}-tox-${{ hashFiles('tools/deps/requirements.txt', 'tools/deps/requirements-tests.txt', 'tools/deps/requirements-tox.txt') }} | |
| - name: Install tox | |
| run: python -m pip install -r tools/deps/requirements-tox.txt | |
| - name: Functional tests | |
| run: tox -e ft | |
| - name: Upload coverage to Codecov | |
| if: ${{ success() || failure() }} | |
| uses: codecov/codecov-action@v6 | |
| with: | |
| token: ${{secrets.CODECOV_TOKEN}} | |
| files: ./coverage.xml | |
| flags: functional | |
| env_vars: OS,PYTHON | |
| functional-tests-windows: | |
| runs-on: windows-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.13 # XXX_PYTHON | |
| - uses: actions/cache@v5 | |
| with: | |
| path: ~\AppData\Local\pip\Cache | |
| key: ${{ runner.os }}-pip-${{ hashFiles('tools/deps/requirements.txt', 'tools/deps/requirements-tests.txt', 'tools/deps/requirements-tox.txt') }} | |
| restore-keys: ${{ runner.os }}-pip-${{ hashFiles('tools/deps/requirements.txt', 'tools/deps/requirements-tests.txt', 'tools/deps/requirements-tox.txt') }} | |
| - name: Install tox | |
| run: python -m pip install -r tools/deps/requirements-tox.txt | |
| - name: Functional tests | |
| run: tox -e ft | |
| - name: Upload coverage to Codecov | |
| if: ${{ success() || failure() }} | |
| uses: codecov/codecov-action@v6 | |
| with: | |
| token: ${{secrets.CODECOV_TOKEN}} | |
| files: ./coverage.xml | |
| flags: functional | |
| env_vars: OS,PYTHON | |
| cleanup: | |
| runs-on: ubuntu-latest | |
| if: always() | |
| needs: | |
| - functional-tests-linux | |
| - functional-tests-macos | |
| - functional-tests-windows | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.13 # XXX_PYTHON | |
| - uses: actions/cache@v5 | |
| with: | |
| path: ~/.cache/pip | |
| key: ${{ runner.os }}-pip-${{ hashFiles('tools/deps/requirements-tox.txt') }} | |
| restore-keys: ${{ runner.os }}-pip-${{ hashFiles('tools/deps/requirements-tox.txt') }} | |
| - uses: actions/cache@v5 | |
| with: | |
| path: .tox | |
| key: ${{ runner.os }}-tox-${{ hashFiles('tools/deps/requirements-tox.txt') }} | |
| restore-keys: ${{ runner.os }}-tox-${{ hashFiles('tools/deps/requirements-tox.txt') }} | |
| - name: Install tox | |
| run: python -m pip install -r tools/deps/requirements-tox.txt | |
| - name: Clean-up tests data | |
| run: tox -e clean |