Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

nosetests.yml 557 B

1234567891011121314151617181920212223242526
  1. name: Run nose tests
  2. on:
  3. push:
  4. branches:
  5. - main
  6. - enh_simplify
  7. pull_request:
  8. branches:
  9. - master
  10. - enh_simplify
  11. jobs:
  12. build:
  13. runs-on: ubuntu-latest
  14. steps:
  15. - uses: actions/checkout@v2
  16. - name: Install Python 3
  17. uses: actions/setup-python@v1
  18. with:
  19. python-version: 3.7
  20. - name: Install dependencies
  21. run: |
  22. python -m pip install --upgrade pip
  23. pip install -r requirements.txt
  24. - name: Run nosetests
  25. run: nosetests dataladmetadatamodel