diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index eb303d79..7b12ee68 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -249,9 +249,9 @@ jobs: uses: actions/checkout@v2 - name: Create config.yaml - run: cp datagateway_api/config.yaml.example datagateway_api/config.yaml + run: cp config.yaml.example config.yaml - name: Create search_api_mapping.json - run: cp datagateway_api/search_api_mapping.json.example datagateway_api/search_api_mapping.json + run: cp search_api_mapping.json.example search_api_mapping.json - name: Install Poetry run: pip install poetry==1.1.9 diff --git a/noxfile.py b/noxfile.py index 1c174fe0..49be6c81 100644 --- a/noxfile.py +++ b/noxfile.py @@ -72,7 +72,8 @@ def safety(session): f"--output={requirements.name}", external=True, ) - # Ignore 50916 as the latest version of pydantic does not support + # Ignore 50916 as the latest version of pydantic and + # Ignore 5146 as the latest version of pytest does not support # python 3.6 which is still used in production session.run( "safety", @@ -81,6 +82,8 @@ def safety(session): "--full-report", "--ignore", "50916", + "--ignore", + "51457", ) try: