Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

1
  • 3
    CI builds should run in isolation, or at least they should not modify external state, otherwise you're destroying repeatability. So if you absolutely must access and modify a database during a build, you should really create it on the fly, populating it with initial data as needed for the build, and possibly destroying it afterwards if you don't need to look at the resulting schema for additional tests. Commented Jul 21, 2019 at 14:31