diff --git a/python/spec/dependabot/python/file_parser/pipfile_files_parser_spec.rb b/python/spec/dependabot/python/file_parser/pipfile_files_parser_spec.rb index 6c5c585d47b..88e1e24dd29 100644 --- a/python/spec/dependabot/python/file_parser/pipfile_files_parser_spec.rb +++ b/python/spec/dependabot/python/file_parser/pipfile_files_parser_spec.rb @@ -14,8 +14,8 @@ let(:lockfile) do Dependabot::DependencyFile.new(name: "Pipfile.lock", content: lockfile_body) end - let(:pipfile_body) { fixture("pipfiles", pipfile_fixture_name) } - let(:lockfile_body) { fixture("lockfiles", lockfile_fixture_name) } + let(:pipfile_body) { fixture("pipfile_files", pipfile_fixture_name) } + let(:lockfile_body) { fixture("pipfile_files", lockfile_fixture_name) } let(:pipfile_fixture_name) { "version_not_specified" } let(:lockfile_fixture_name) { "version_not_specified.lock" } diff --git a/python/spec/dependabot/python/file_parser_spec.rb b/python/spec/dependabot/python/file_parser_spec.rb index 81fbb1088b6..d6703ebe48b 100644 --- a/python/spec/dependabot/python/file_parser_spec.rb +++ b/python/spec/dependabot/python/file_parser_spec.rb @@ -1080,9 +1080,9 @@ ) end - let(:pipfile_body) { fixture("pipfiles", pipfile_fixture_name) } + let(:pipfile_body) { fixture("pipfile_files", pipfile_fixture_name) } let(:lockfile_body) do - fixture("lockfiles", lockfile_fixture_name) + fixture("pipfile_files", lockfile_fixture_name) end let(:pipfile_fixture_name) { "version_not_specified" } let(:lockfile_fixture_name) { "version_not_specified.lock" } @@ -1139,7 +1139,7 @@ let(:pipfile) do Dependabot::DependencyFile.new( name: "Pipfile", - content: fixture("pipfiles", "version_not_specified") + content: fixture("pipfile_files", "version_not_specified") ) end @@ -1168,7 +1168,7 @@ let(:pipfile) do Dependabot::DependencyFile.new( name: "Pipfile", - content: fixture("pipfiles", "version_not_specified") + content: fixture("pipfile_files", "version_not_specified") ) end diff --git a/python/spec/dependabot/python/file_updater/pipfile_file_updater_spec.rb b/python/spec/dependabot/python/file_updater/pipfile_file_updater_spec.rb index 5e6c5679975..543bdac30e5 100644 --- a/python/spec/dependabot/python/file_updater/pipfile_file_updater_spec.rb +++ b/python/spec/dependabot/python/file_updater/pipfile_file_updater_spec.rb @@ -18,13 +18,13 @@ let(:pipfile) do Dependabot::DependencyFile.new( name: "Pipfile", - content: fixture("pipfiles", pipfile_fixture_name) + content: fixture("pipfile_files", pipfile_fixture_name) ) end let(:lockfile) do Dependabot::DependencyFile.new( name: "Pipfile.lock", - content: fixture("lockfiles", lockfile_fixture_name) + content: fixture("pipfile_files", lockfile_fixture_name) ) end let(:pipfile_fixture_name) { "version_not_specified" } diff --git a/python/spec/dependabot/python/file_updater/pipfile_manifest_updater_spec.rb b/python/spec/dependabot/python/file_updater/pipfile_manifest_updater_spec.rb index eda1ce42a3f..f24d6623f26 100644 --- a/python/spec/dependabot/python/file_updater/pipfile_manifest_updater_spec.rb +++ b/python/spec/dependabot/python/file_updater/pipfile_manifest_updater_spec.rb @@ -16,7 +16,7 @@ let(:manifest) do Dependabot::DependencyFile.new( name: "Pipfile", - content: fixture("pipfiles", pipfile_fixture_name) + content: fixture("pipfile_files", pipfile_fixture_name) ) end let(:pipfile_fixture_name) { "version_not_specified" } diff --git a/python/spec/dependabot/python/file_updater/pipfile_preparer_spec.rb b/python/spec/dependabot/python/file_updater/pipfile_preparer_spec.rb index 07213367f24..b8cd68fff96 100644 --- a/python/spec/dependabot/python/file_updater/pipfile_preparer_spec.rb +++ b/python/spec/dependabot/python/file_updater/pipfile_preparer_spec.rb @@ -11,7 +11,7 @@ end let(:pipfile_content) do - fixture("pipfiles", pipfile_fixture_name) + fixture("pipfile_files", pipfile_fixture_name) end let(:pipfile_fixture_name) { "version_not_specified" } @@ -46,7 +46,7 @@ let(:lockfile) do Dependabot::DependencyFile.new( name: "Pipfile.lock", - content: fixture("lockfiles", lockfile_fixture_name) + content: fixture("pipfile_files", lockfile_fixture_name) ) end let(:pipfile_fixture_name) { "version_not_specified" } @@ -128,7 +128,7 @@ let(:lockfile) do Dependabot::DependencyFile.new( name: "Pipfile.lock", - content: fixture("lockfiles", lockfile_fixture_name) + content: fixture("pipfile_files", lockfile_fixture_name) ) end let(:pipfile_fixture_name) { "version_not_specified" } diff --git a/python/spec/dependabot/python/file_updater_spec.rb b/python/spec/dependabot/python/file_updater_spec.rb index 808fe8f18ae..98f3f10327d 100644 --- a/python/spec/dependabot/python/file_updater_spec.rb +++ b/python/spec/dependabot/python/file_updater_spec.rb @@ -91,13 +91,13 @@ let(:pipfile) do Dependabot::DependencyFile.new( name: "Pipfile", - content: fixture("pipfiles", "version_not_specified") + content: fixture("pipfile_files", "version_not_specified") ) end let(:lockfile) do Dependabot::DependencyFile.new( name: "Pipfile.lock", - content: fixture("lockfiles", "version_not_specified.lock") + content: fixture("pipfile_files", "version_not_specified.lock") ) end @@ -135,7 +135,7 @@ let(:pipfile) do Dependabot::DependencyFile.new( name: "Pipfile", - content: fixture("pipfiles", "exact_version") + content: fixture("pipfile_files", "exact_version") ) end diff --git a/python/spec/dependabot/python/update_checker/index_finder_spec.rb b/python/spec/dependabot/python/update_checker/index_finder_spec.rb index 03ac746f795..3d69dfa53e6 100644 --- a/python/spec/dependabot/python/update_checker/index_finder_spec.rb +++ b/python/spec/dependabot/python/update_checker/index_finder_spec.rb @@ -30,7 +30,7 @@ let(:pipfile) do Dependabot::DependencyFile.new( name: "Pipfile", - content: fixture("pipfiles", pipfile_fixture_name) + content: fixture("pipfile_files", pipfile_fixture_name) ) end let(:pipfile_fixture_name) { "exact_version" } diff --git a/python/spec/dependabot/python/update_checker/latest_version_finder_spec.rb b/python/spec/dependabot/python/update_checker/latest_version_finder_spec.rb index 05c83e73195..a408b0be8c3 100644 --- a/python/spec/dependabot/python/update_checker/latest_version_finder_spec.rb +++ b/python/spec/dependabot/python/update_checker/latest_version_finder_spec.rb @@ -38,7 +38,7 @@ let(:pipfile) do Dependabot::DependencyFile.new( name: "Pipfile", - content: fixture("pipfiles", pipfile_fixture_name) + content: fixture("pipfile_files", pipfile_fixture_name) ) end let(:pipfile_fixture_name) { "exact_version" } diff --git a/python/spec/dependabot/python/update_checker/pipenv_version_resolver_spec.rb b/python/spec/dependabot/python/update_checker/pipenv_version_resolver_spec.rb index 18c39f1c1d2..29191d654e2 100644 --- a/python/spec/dependabot/python/update_checker/pipenv_version_resolver_spec.rb +++ b/python/spec/dependabot/python/update_checker/pipenv_version_resolver_spec.rb @@ -25,14 +25,14 @@ let(:pipfile) do Dependabot::DependencyFile.new( name: "Pipfile", - content: fixture("pipfiles", pipfile_fixture_name) + content: fixture("pipfile_files", pipfile_fixture_name) ) end let(:pipfile_fixture_name) { "exact_version" } let(:lockfile) do Dependabot::DependencyFile.new( name: "Pipfile.lock", - content: fixture("lockfiles", lockfile_fixture_name) + content: fixture("pipfile_files", lockfile_fixture_name) ) end let(:lockfile_fixture_name) { "exact_version.lock" } diff --git a/python/spec/dependabot/python/update_checker_spec.rb b/python/spec/dependabot/python/update_checker_spec.rb index e7138baca59..0f6c6587b98 100644 --- a/python/spec/dependabot/python/update_checker_spec.rb +++ b/python/spec/dependabot/python/update_checker_spec.rb @@ -41,7 +41,7 @@ let(:pipfile) do Dependabot::DependencyFile.new( name: "Pipfile", - content: fixture("pipfiles", pipfile_fixture_name) + content: fixture("pipfile_files", pipfile_fixture_name) ) end let(:pipfile_fixture_name) { "exact_version" } @@ -530,7 +530,7 @@ let(:lockfile) do Dependabot::DependencyFile.new( name: "Pipfile.lock", - content: fixture("lockfiles", "exact_version.lock") + content: fixture("pipfile_files", "exact_version.lock") ) end diff --git a/python/spec/fixtures/pipfiles/arbitrary_equality b/python/spec/fixtures/pipfile_files/arbitrary_equality similarity index 100% rename from python/spec/fixtures/pipfiles/arbitrary_equality rename to python/spec/fixtures/pipfile_files/arbitrary_equality diff --git a/python/spec/fixtures/lockfiles/arbitrary_equality.lock b/python/spec/fixtures/pipfile_files/arbitrary_equality.lock similarity index 100% rename from python/spec/fixtures/lockfiles/arbitrary_equality.lock rename to python/spec/fixtures/pipfile_files/arbitrary_equality.lock diff --git a/python/spec/fixtures/pipfiles/conflict_at_current b/python/spec/fixtures/pipfile_files/conflict_at_current similarity index 100% rename from python/spec/fixtures/pipfiles/conflict_at_current rename to python/spec/fixtures/pipfile_files/conflict_at_current diff --git a/python/spec/fixtures/lockfiles/conflict_at_current.lock b/python/spec/fixtures/pipfile_files/conflict_at_current.lock similarity index 100% rename from python/spec/fixtures/lockfiles/conflict_at_current.lock rename to python/spec/fixtures/pipfile_files/conflict_at_current.lock diff --git a/python/spec/fixtures/pipfiles/conflict_at_latest b/python/spec/fixtures/pipfile_files/conflict_at_latest similarity index 100% rename from python/spec/fixtures/pipfiles/conflict_at_latest rename to python/spec/fixtures/pipfile_files/conflict_at_latest diff --git a/python/spec/fixtures/lockfiles/conflict_at_latest.lock b/python/spec/fixtures/pipfile_files/conflict_at_latest.lock similarity index 100% rename from python/spec/fixtures/lockfiles/conflict_at_latest.lock rename to python/spec/fixtures/pipfile_files/conflict_at_latest.lock diff --git a/python/spec/fixtures/lockfiles/edited.lock b/python/spec/fixtures/pipfile_files/edited.lock similarity index 100% rename from python/spec/fixtures/lockfiles/edited.lock rename to python/spec/fixtures/pipfile_files/edited.lock diff --git a/python/spec/fixtures/lockfiles/edited_array.lock b/python/spec/fixtures/pipfile_files/edited_array.lock similarity index 100% rename from python/spec/fixtures/lockfiles/edited_array.lock rename to python/spec/fixtures/pipfile_files/edited_array.lock diff --git a/python/spec/fixtures/pipfiles/empty_requirement b/python/spec/fixtures/pipfile_files/empty_requirement similarity index 100% rename from python/spec/fixtures/pipfiles/empty_requirement rename to python/spec/fixtures/pipfile_files/empty_requirement diff --git a/python/spec/fixtures/pipfiles/environment_variable_source b/python/spec/fixtures/pipfile_files/environment_variable_source similarity index 100% rename from python/spec/fixtures/pipfiles/environment_variable_source rename to python/spec/fixtures/pipfile_files/environment_variable_source diff --git a/python/spec/fixtures/lockfiles/environment_variable_source.lock b/python/spec/fixtures/pipfile_files/environment_variable_source.lock similarity index 100% rename from python/spec/fixtures/lockfiles/environment_variable_source.lock rename to python/spec/fixtures/pipfile_files/environment_variable_source.lock diff --git a/python/spec/fixtures/pipfiles/exact_version b/python/spec/fixtures/pipfile_files/exact_version similarity index 100% rename from python/spec/fixtures/pipfiles/exact_version rename to python/spec/fixtures/pipfile_files/exact_version diff --git a/python/spec/fixtures/lockfiles/exact_version.lock b/python/spec/fixtures/pipfile_files/exact_version.lock similarity index 100% rename from python/spec/fixtures/lockfiles/exact_version.lock rename to python/spec/fixtures/pipfile_files/exact_version.lock diff --git a/python/spec/fixtures/pipfiles/extra_subdependency b/python/spec/fixtures/pipfile_files/extra_subdependency similarity index 100% rename from python/spec/fixtures/pipfiles/extra_subdependency rename to python/spec/fixtures/pipfile_files/extra_subdependency diff --git a/python/spec/fixtures/lockfiles/extra_subdependency.lock b/python/spec/fixtures/pipfile_files/extra_subdependency.lock similarity index 100% rename from python/spec/fixtures/lockfiles/extra_subdependency.lock rename to python/spec/fixtures/pipfile_files/extra_subdependency.lock diff --git a/python/spec/fixtures/pipfiles/git_source b/python/spec/fixtures/pipfile_files/git_source similarity index 100% rename from python/spec/fixtures/pipfiles/git_source rename to python/spec/fixtures/pipfile_files/git_source diff --git a/python/spec/fixtures/lockfiles/git_source.lock b/python/spec/fixtures/pipfile_files/git_source.lock similarity index 100% rename from python/spec/fixtures/lockfiles/git_source.lock rename to python/spec/fixtures/pipfile_files/git_source.lock diff --git a/python/spec/fixtures/pipfiles/git_source_bad_ref b/python/spec/fixtures/pipfile_files/git_source_bad_ref similarity index 100% rename from python/spec/fixtures/pipfiles/git_source_bad_ref rename to python/spec/fixtures/pipfile_files/git_source_bad_ref diff --git a/python/spec/fixtures/lockfiles/git_source_bad_ref.lock b/python/spec/fixtures/pipfile_files/git_source_bad_ref.lock similarity index 100% rename from python/spec/fixtures/lockfiles/git_source_bad_ref.lock rename to python/spec/fixtures/pipfile_files/git_source_bad_ref.lock diff --git a/python/spec/fixtures/pipfiles/git_source_no_ref b/python/spec/fixtures/pipfile_files/git_source_no_ref similarity index 100% rename from python/spec/fixtures/pipfiles/git_source_no_ref rename to python/spec/fixtures/pipfile_files/git_source_no_ref diff --git a/python/spec/fixtures/lockfiles/git_source_no_ref.lock b/python/spec/fixtures/pipfile_files/git_source_no_ref.lock similarity index 100% rename from python/spec/fixtures/lockfiles/git_source_no_ref.lock rename to python/spec/fixtures/pipfile_files/git_source_no_ref.lock diff --git a/python/spec/fixtures/pipfiles/git_source_unreachable b/python/spec/fixtures/pipfile_files/git_source_unreachable similarity index 100% rename from python/spec/fixtures/pipfiles/git_source_unreachable rename to python/spec/fixtures/pipfile_files/git_source_unreachable diff --git a/python/spec/fixtures/lockfiles/git_source_unreachable.lock b/python/spec/fixtures/pipfile_files/git_source_unreachable.lock similarity index 100% rename from python/spec/fixtures/lockfiles/git_source_unreachable.lock rename to python/spec/fixtures/pipfile_files/git_source_unreachable.lock diff --git a/python/spec/fixtures/pipfiles/hard_names b/python/spec/fixtures/pipfile_files/hard_names similarity index 100% rename from python/spec/fixtures/pipfiles/hard_names rename to python/spec/fixtures/pipfile_files/hard_names diff --git a/python/spec/fixtures/lockfiles/hard_names.lock b/python/spec/fixtures/pipfile_files/hard_names.lock similarity index 100% rename from python/spec/fixtures/lockfiles/hard_names.lock rename to python/spec/fixtures/pipfile_files/hard_names.lock diff --git a/python/spec/fixtures/pipfiles/no_source b/python/spec/fixtures/pipfile_files/no_source similarity index 100% rename from python/spec/fixtures/pipfiles/no_source rename to python/spec/fixtures/pipfile_files/no_source diff --git a/python/spec/fixtures/pipfiles/not_in_lockfile b/python/spec/fixtures/pipfile_files/not_in_lockfile similarity index 100% rename from python/spec/fixtures/pipfiles/not_in_lockfile rename to python/spec/fixtures/pipfile_files/not_in_lockfile diff --git a/python/spec/fixtures/pipfiles/only_dev b/python/spec/fixtures/pipfile_files/only_dev similarity index 100% rename from python/spec/fixtures/pipfiles/only_dev rename to python/spec/fixtures/pipfile_files/only_dev diff --git a/python/spec/fixtures/lockfiles/only_dev.lock b/python/spec/fixtures/pipfile_files/only_dev.lock similarity index 100% rename from python/spec/fixtures/lockfiles/only_dev.lock rename to python/spec/fixtures/pipfile_files/only_dev.lock diff --git a/python/spec/fixtures/pipfiles/path_dependency b/python/spec/fixtures/pipfile_files/path_dependency similarity index 100% rename from python/spec/fixtures/pipfiles/path_dependency rename to python/spec/fixtures/pipfile_files/path_dependency diff --git a/python/spec/fixtures/lockfiles/path_dependency.lock b/python/spec/fixtures/pipfile_files/path_dependency.lock similarity index 100% rename from python/spec/fixtures/lockfiles/path_dependency.lock rename to python/spec/fixtures/pipfile_files/path_dependency.lock diff --git a/python/spec/fixtures/pipfiles/path_dependency_not_self b/python/spec/fixtures/pipfile_files/path_dependency_not_self similarity index 100% rename from python/spec/fixtures/pipfiles/path_dependency_not_self rename to python/spec/fixtures/pipfile_files/path_dependency_not_self diff --git a/python/spec/fixtures/lockfiles/path_dependency_not_self.lock b/python/spec/fixtures/pipfile_files/path_dependency_not_self.lock similarity index 100% rename from python/spec/fixtures/lockfiles/path_dependency_not_self.lock rename to python/spec/fixtures/pipfile_files/path_dependency_not_self.lock diff --git a/python/spec/fixtures/pipfiles/private_source b/python/spec/fixtures/pipfile_files/private_source similarity index 100% rename from python/spec/fixtures/pipfiles/private_source rename to python/spec/fixtures/pipfile_files/private_source diff --git a/python/spec/fixtures/pipfiles/private_source_auth b/python/spec/fixtures/pipfile_files/private_source_auth similarity index 100% rename from python/spec/fixtures/pipfiles/private_source_auth rename to python/spec/fixtures/pipfile_files/private_source_auth diff --git a/python/spec/fixtures/pipfiles/problematic_resolution b/python/spec/fixtures/pipfile_files/problematic_resolution similarity index 100% rename from python/spec/fixtures/pipfiles/problematic_resolution rename to python/spec/fixtures/pipfile_files/problematic_resolution diff --git a/python/spec/fixtures/pipfiles/prod_and_dev b/python/spec/fixtures/pipfile_files/prod_and_dev similarity index 100% rename from python/spec/fixtures/pipfiles/prod_and_dev rename to python/spec/fixtures/pipfile_files/prod_and_dev diff --git a/python/spec/fixtures/lockfiles/prod_and_dev.lock b/python/spec/fixtures/pipfile_files/prod_and_dev.lock similarity index 100% rename from python/spec/fixtures/lockfiles/prod_and_dev.lock rename to python/spec/fixtures/pipfile_files/prod_and_dev.lock diff --git a/python/spec/fixtures/pipfiles/prod_and_dev_different b/python/spec/fixtures/pipfile_files/prod_and_dev_different similarity index 100% rename from python/spec/fixtures/pipfiles/prod_and_dev_different rename to python/spec/fixtures/pipfile_files/prod_and_dev_different diff --git a/python/spec/fixtures/pipfiles/required_python b/python/spec/fixtures/pipfile_files/required_python similarity index 100% rename from python/spec/fixtures/pipfiles/required_python rename to python/spec/fixtures/pipfile_files/required_python diff --git a/python/spec/fixtures/lockfiles/required_python.lock b/python/spec/fixtures/pipfile_files/required_python.lock similarity index 100% rename from python/spec/fixtures/lockfiles/required_python.lock rename to python/spec/fixtures/pipfile_files/required_python.lock diff --git a/python/spec/fixtures/pipfiles/required_python_implicit b/python/spec/fixtures/pipfile_files/required_python_implicit similarity index 100% rename from python/spec/fixtures/pipfiles/required_python_implicit rename to python/spec/fixtures/pipfile_files/required_python_implicit diff --git a/python/spec/fixtures/lockfiles/required_python_implicit.lock b/python/spec/fixtures/pipfile_files/required_python_implicit.lock similarity index 100% rename from python/spec/fixtures/lockfiles/required_python_implicit.lock rename to python/spec/fixtures/pipfile_files/required_python_implicit.lock diff --git a/python/spec/fixtures/pipfiles/required_python_invalid b/python/spec/fixtures/pipfile_files/required_python_invalid similarity index 100% rename from python/spec/fixtures/pipfiles/required_python_invalid rename to python/spec/fixtures/pipfile_files/required_python_invalid diff --git a/python/spec/fixtures/pipfiles/required_python_unsupported b/python/spec/fixtures/pipfile_files/required_python_unsupported similarity index 100% rename from python/spec/fixtures/pipfiles/required_python_unsupported rename to python/spec/fixtures/pipfile_files/required_python_unsupported diff --git a/python/spec/fixtures/lockfiles/unnecessary_subdependency.lock b/python/spec/fixtures/pipfile_files/unnecessary_subdependency.lock similarity index 100% rename from python/spec/fixtures/lockfiles/unnecessary_subdependency.lock rename to python/spec/fixtures/pipfile_files/unnecessary_subdependency.lock diff --git a/python/spec/fixtures/pipfiles/unparseable b/python/spec/fixtures/pipfile_files/unparseable similarity index 100% rename from python/spec/fixtures/pipfiles/unparseable rename to python/spec/fixtures/pipfile_files/unparseable diff --git a/python/spec/fixtures/lockfiles/unparseable.lock b/python/spec/fixtures/pipfile_files/unparseable.lock similarity index 100% rename from python/spec/fixtures/lockfiles/unparseable.lock rename to python/spec/fixtures/pipfile_files/unparseable.lock diff --git a/python/spec/fixtures/pipfiles/unsupported_dep b/python/spec/fixtures/pipfile_files/unsupported_dep similarity index 100% rename from python/spec/fixtures/pipfiles/unsupported_dep rename to python/spec/fixtures/pipfile_files/unsupported_dep diff --git a/python/spec/fixtures/lockfiles/unsupported_dep.lock b/python/spec/fixtures/pipfile_files/unsupported_dep.lock similarity index 100% rename from python/spec/fixtures/lockfiles/unsupported_dep.lock rename to python/spec/fixtures/pipfile_files/unsupported_dep.lock diff --git a/python/spec/fixtures/pipfiles/version_hash b/python/spec/fixtures/pipfile_files/version_hash similarity index 100% rename from python/spec/fixtures/pipfiles/version_hash rename to python/spec/fixtures/pipfile_files/version_hash diff --git a/python/spec/fixtures/lockfiles/version_hash.lock b/python/spec/fixtures/pipfile_files/version_hash.lock similarity index 100% rename from python/spec/fixtures/lockfiles/version_hash.lock rename to python/spec/fixtures/pipfile_files/version_hash.lock diff --git a/python/spec/fixtures/pipfiles/version_not_specified b/python/spec/fixtures/pipfile_files/version_not_specified similarity index 100% rename from python/spec/fixtures/pipfiles/version_not_specified rename to python/spec/fixtures/pipfile_files/version_not_specified diff --git a/python/spec/fixtures/lockfiles/version_not_specified.lock b/python/spec/fixtures/pipfile_files/version_not_specified.lock similarity index 100% rename from python/spec/fixtures/lockfiles/version_not_specified.lock rename to python/spec/fixtures/pipfile_files/version_not_specified.lock diff --git a/python/spec/fixtures/pipfiles/version_table b/python/spec/fixtures/pipfile_files/version_table similarity index 100% rename from python/spec/fixtures/pipfiles/version_table rename to python/spec/fixtures/pipfile_files/version_table diff --git a/python/spec/fixtures/pipfiles/wildcard b/python/spec/fixtures/pipfile_files/wildcard similarity index 100% rename from python/spec/fixtures/pipfiles/wildcard rename to python/spec/fixtures/pipfile_files/wildcard diff --git a/python/spec/fixtures/pipfiles/with_quotes b/python/spec/fixtures/pipfile_files/with_quotes similarity index 100% rename from python/spec/fixtures/pipfiles/with_quotes rename to python/spec/fixtures/pipfile_files/with_quotes diff --git a/python/spec/fixtures/pipfiles/yanked b/python/spec/fixtures/pipfile_files/yanked similarity index 100% rename from python/spec/fixtures/pipfiles/yanked rename to python/spec/fixtures/pipfile_files/yanked diff --git a/python/spec/fixtures/lockfiles/yanked.lock b/python/spec/fixtures/pipfile_files/yanked.lock similarity index 100% rename from python/spec/fixtures/lockfiles/yanked.lock rename to python/spec/fixtures/pipfile_files/yanked.lock